-
Notifications
You must be signed in to change notification settings - Fork 50
/
template.html
34 lines (32 loc) · 929 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
<!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>
<a href="/about">about</a>
<a href="https://github.com/surprisetalk/blogs.hn">src</a>
<a href="/blogs.hn.opml" download>opml</a>
<a id="shuffle" style="display: none" href="#" onclick="shuffle()">shuf</a>
</header>
{{body}}
</body>
</html>