-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
43 lines (36 loc) · 1.26 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{title}</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Inconsolata" />
<!-- Place favicon.ico in the root directory -->
<link href='https://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/skeleton.css">
<link rel="stylesheet" type="text/css" href="/custom.css">
{head}
</head>
<body>
<section id="nav">
<nav>
<a href="/about">about</a>
</nav>
</section>
<hr/>
<section id="body">
{body}
</section>
<hr/>
<section id="footer">
<footer>
Project © 2021 <a href="https://www.saul.pw">Saul Pwanson</a>
| Licensed under <a href="Licenese Link">GPLv3</a>
</footer>
</section>
</body>
</html>