-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
48 lines (41 loc) · 1.48 KB
/
template.html
File metadata and controls
48 lines (41 loc) · 1.48 KB
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
43
44
45
46
47
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Color Demonstrator</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}
<script>
window.addEventListener("load",function() {{
document.body.style.background = window.location.hash.substr(1);
}});
</script>
</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 © 2022 <a href="https://www.example.com">Your Name Here</a>
| Licensed under <a href="https://creativecommons.org/share-your-work/public-domain/cc0/">CC0</a>
</footer>
</section>
</body>
</html>