blob: 83b5cc3970484e08ff218b6ebeb01e9ec9544655 (
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
|
<!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 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>
|