summaryrefslogtreecommitdiff
path: root/src/http/tpl/base.html
blob: c818471aded2a477a8831d1e72ea6d27a2347d0e (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>
      &nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;
      <a href="{{ BlogURL "follow" }}">Follow</a>
      &nbsp;/&nbsp;
      <a href="{{ BlogURL "feed.xml" }}">RSS</a>
      &nbsp;/&nbsp;
      <a href="{{ StaticURL "wtfpl.txt" }}">License</a>
    </header>

    {{ template "body" . }}

  </body>

</html>