summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 90ab815630daff77b23fa39585e5fb228d2b8bca (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
<!doctype html>
<html lang="en">
  <head>
    <link rel="stylesheet" href="/style.css" type="text/css" />
    <title>{% block title %} {% endblock title %}</title>
    <!-- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
    <link
      rel="alternate"
      type="application/rss+xml"
      title="sakamoto.network"
      href="/rss.xml"
    />
    <meta property="og:type" content="website" />
    <meta property="og:description" content="sakamoto.network" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1.0, user-scalable=yes"
    />
    <meta name="color-scheme" content="light dark" />
  </head>

  <body>
    <!-- from sizeof.cat -->
    <script type="text/javascript" src="/favicons.js"></script>
    <script>
      document.addEventListener("DOMContentLoaded", function (event) {
        favicons();
      });
    </script>

    <header>
      <nav>
        <a class="left" href="/">sakamoto</a>
        <a class="left" href="/about">about</a>
        <a class="left" href="https://git.sakamoto.network">git</a>
        <a class="left" href="/blog">blog</a>
        <a class="right" href="/rss.xml">rss</a>
        <a class="right" href="/atom.xml">atom</a>
      </nav>
    </header>

    <hr />

    <main>{% block content %} {% endblock content %}</main>

    <hr />

    <footer>fish</footer>
  </body>
</html>