blob: 78898677bb00252b810f29f705074536fd6d4245 (
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
29
30
31
32
33
|
<!DOCTYPE html>
<html>
<head>
<style>{{ StaticInlineCSS "new.css" }}</style>
<style>{{ StaticInlineCSS "mediocre.css" }}</style>
<link rel="apple-touch-icon" sizes="180x180" href="{{ StaticURL "favicon/apple-touch-icon.png" }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ StaticURL "favicon/favicon-32x32.png" }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ StaticURL "favicon/favicon-16x16.png" }}">
<link rel="manifest" href="{{ StaticURL "favicon/site.webmanifest" }}">
</head>
<body>
<header>
<a href="{{ BlogURL "/" }}"><strong>Mediocre Blog</strong></a>
by
<a href="https://mediocregopher.com">mediocregopher</a>
<br/>
<a href="{{ BlogURL "follow" }}">Follow</a>
/
<a href="{{ BlogURL "feed.xml" }}">RSS</a>
/
<a href="{{ StaticURL "wtfpl.txt" }}">License</a>
</header>
{{ template "body" . }}
</body>
</html>
|