summaryrefslogtreecommitdiffstats
path: root/templates/layout.html
blob: 92ec496d6407dcd44802a2d104fc4f4c7aaeb81a (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
{% block head %}{% endblock %}
		<style>
body {
	max-width: 42rem;
}
a, a:visited {
	text-decoration: none;
	color: #32609C;
}
a:hover {
	color: #339;
}
header nav ul {
	padding: 0em;
	list-style-type: none;
}
header nav ul li {
	display: inline;
	margin-right: 0.25rem;
}
header nav a, header nav a:visited {
	color: #444;
}
header nav a:hover {
	color: #000;
}
article {
	padding-left: 0.5rem;
}
article p {
	white-space: pre-wrap;
}
#post-nav {
	padding-bottom: 0.25em;
}
ul#archive-list {
	list-style-type: none;
}
footer {
	height: 55px;
}
footer p#copy {
	margin: 0em;
	padding-top: 0.25em;
	padding-bottom: 0.25em;
}
footer ul#contact-info {
	margin: 0;
	padding: 0em;
	padding-top: 0.25em;
	padding-bottom: 0.25em;
	list-style-type: none;
}
footer ul#contact-info li {
	display: inline;
	margin-right: 0.25rem;
}
		</style>
	</head>

	<body>
		<header>
			<nav>
				<ul>
					<li><a href="index.html">index</a></li>
					<li><a href="archive.html">archive</a></li>
				</ul>
			</nav>
		</header>
		<hr />
{% block content %}{% endblock %}
		<hr />
		<footer>
			<div>
				<p id="copy">© 2016 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>