summaryrefslogtreecommitdiffstats
path: root/kyrias_website/templates/base.html
blob: 7664e574792602f30b4a63748f6e43f3d659cf7d (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
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		{% assets "css_all" %}
			<link rel="stylesheet" type="text/css" href="{{ ASSET_URL }}">
		{% endassets %}
{% block head %}{% endblock %}
	</head>

	<body>
		<header class="padded-box">
			<nav>
				<ul>
					<li><a href="{{ url_for("index") }}">index</a></li>
					<li><a href="{{ url_for("archive") }}">archive</a></li>
					<li><a href="{{ url_for("tags") }}">tags</a></li>
					<li><a href="{{ url_for("page", path='about') }}">about</a></li>
				</ul>
			</nav>
		</header>
		<hr />
		<div class="padded-box">
{% block content %}{% endblock %}
		</div>
		<hr />
		<footer id="bottom" class="padded-box">
			<div>
				<p id="copy">© 2017 Johannes Löthberg</p>
			</div>

			<div>
			<ul id="contact-info">
				<li><a rel="me" href="mailto:johannes@kyriasis.com">Email</a></li>
				<li><a rel="me" href="https://twitter.com/kyriasis">Twitter</a></li>
			</ul>
			</div>
		</footer>
	</body>
</html>