blob: e78be4bd630046a8ed8bf4350b2c5ea8b6a12b5c (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ title }}</title>
<link href="style.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Johannes Löthberg">
<link rel="icon" type="image/png" href="https://theos.kyriasis.com/glider.png" />
{% block head %}{% endblock %}
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<header>
<nav>
<ul>
<li><a href="https://theos.kyriasis.com/">theos/</a></li>
<li><a href="http://git.kyriasis.com/">cgit/</a></li>
<li><a href="https://theos.kyriasis.com/znc/">znc/</a></li>
</ul>
</nav>
<h1>{{ header }}</h1>
</header>
{% block content %}{% endblock %}
<footer>
<div id="foot-left">
<p id="copy">
© <span itemprop="copyrightYear">2014</span>
by <span itemprop="copyrightHolder">Johannes Löthberg</span>
</p>
</div>
</footer>
</body>
</html>
|