summaryrefslogtreecommitdiff
path: root/srv/src/http/tpl/base.html
blob: 7a311560c26b936f733f72de2bf8f7d5cc3dd6a7 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="utf-8">

    <link rel="stylesheet" href="{{ StaticURL "new.css" }}">

    <style type="text/css">

      html {
        font-family: Georgia, serif;
      }

      h1, h2, h3, h4, h5, h6, .button-primary, .button, header, footer {
          font-family: var(--nc-font-sans);
      }

      h1 a,
      h2 a,
      h3 a,
      h4 a,
      h5 a,
      h6 a {
        text-decoration: none;
        color: var(--nc-tx-1);
      }

      ul {
          list-style: circle;
      }

      hr {
        margin: 2rem 0 2rem 0;
        border-color: var(--nc-bg-3);
      }

    </style>

  </head>

  <body>

    <header>

      <p>
        <a href="{{ BlogURL "/" }}"><strong>Mediocre Blog</strong></a>
        by
        <a href="https://mediocregopher.com">mediocregopher</a>
        &nbsp;•&nbsp;
        <a href="{{ BlogURL "follow" }}">Follow</a>
        &nbsp;•&nbsp;
        <a href="{{ BlogURL "feed.xml" }}">RSS</a>
      </p>

    </header>

    {{ template "body" . }}

    <footer>
      <hr/>
      <p>
        Unless otherwised specified, all works are licensed under the
        <a href="{{ StaticURL "wtfpl.txt" }}">WTFPL</a>.
      </p>
    </footer>

  </body>

</html>