blob: 595ffe39762f452d68d69745db875451213b9ff8 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="{{ StaticURL "new.css" }}">
<link rel="stylesheet" href="{{ StaticURL "mediocre.css" }}">
</head>
<body>
<header>
<a href="{{ BlogURL "/" }}"><strong>Mediocre Blog</strong></a>
by
<a href="https://mediocregopher.com">mediocregopher</a>
//
<a href="{{ BlogURL "follow" }}">Follow</a>
/
<a href="{{ BlogURL "feed.xml" }}">RSS</a>
/
License: <a href="{{ StaticURL "wtfpl.txt" }}">WTFPL</a>
</header>
{{ template "body" . }}
</body>
</html>
|