summaryrefslogtreecommitdiff
path: root/srv/src/http/tpl/base.html
blob: f28622251d7788d613f80aaea10d9b9d5ab6826a (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>
    <style>{{ StaticInlineCSS "new.css" }}</style>
    <style>{{ StaticInlineCSS "mediocre.css" }}</style>
  </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>