summaryrefslogtreecommitdiffstats
path: root/src/templates/layout.html
blob: 56b9555dc74fe16670eff5ed62b7cd50f6ff720d (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
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>{{ title }}</title>
	<link href="/~kyrias/style.css" rel="stylesheet">
	<link rel="icon" type="image/png" href="https://theos.kyriasis.com/~kyrias/resources/glider.png" />

	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta name="author" content="Johannes Löthberg">
	<link rel="me" href="https://theos.kyriasis.com/~kyrias/about.html"
                   title="Johannes Löthberg <johannes@kyriasis.com>">
{% block head %}{% endblock %}
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<header>
{% include 'nav.html' %}
	<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 id="contact-info-wrapper">
			<p>You can find me on:</p>
			<div id="contact-info">
				<a rel="me" href="mailto:johannes@kyriasis.com">Email</a>
				<a rel="me" href="https://twitter.com/kyriasis">Twitter</a>
				<a rel="me" href="https://plus.google.com/+JohannesLothberg">Google+</a>
				<a rel="me" href="sms:+46739525259">SMS</a>
			</div>
		</div>
	</div>
	<a id="emblem" href="http://www.catb.org/hacker-emblem/">
		<img src="/~kyrias/resources/glider.png" alt="hacker emblem" />
	</a>
</footer>
</body>
</html>