summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: bb648592cb848621c29c1bae280c9ad9391c42bc (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
<!doctype html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>{% block title %} {% endblock title %}</title>
    <link rel="stylesheet" href="/style.css" type="text/css">
    <link
      rel="alternate"
      type="application/rss+xml"
      title="sakamoto.network"
      href="/rss.xml">
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
    <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 src="/favicons.js"></script>
    <script>
      document.addEventListener("DOMContentLoaded", function (event) {
        favicons();
      });
    </script>

    <header>
      <a href="/"
        ><img
          src="/favicon.ico"
          alt="sakamoto"
          style="width: 25px; height: 25px"
     ></a>
      <nav>
        <a href="https://git.sakamoto.network">git</a>
        <a href="/blog">blog</a>
      </nav>
    </header>

    <hr>

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

    <hr>

    <footer>
      <p>
        No rights reserved.
        <a href="https://xn--gckvb8fzb.com/faq/#trust">Birds aren't real.</a>
      </p>
      <nav>
        <a href="/rss.xml">rss</a>
        <a href="/atom.xml">atom</a>
      </nav>
    </footer>
  </body>
</html>