forked from surprisetalk/blogs.hn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
38 lines (36 loc) · 951 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>blogs.hn</title>
<meta charset="UTF-8" />
<meta name="author" content="Taylor Troesh" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark" />
<!-- fixes notch on dark mode -->
<meta
name="theme-color"
content="#ffffff"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#222"
media="(prefers-color-scheme: dark)"
/>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<header>
<a href="/"><strong>blogs.hn</strong></a>
<div></div>
<div>
<a id="shuffle" style="display: none" href="#" onclick="shuffle()">
shuffle
</a>
</div>
<a href="https://github.com/surprisetalk/blogs.hn">github</a>
<a href="/about">about</a>
</header>
{{body}}
</body>
</html>