summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: eca6bb2aec9ff8bab31a875ccd24d12a78004f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
<link rel="stylesheet" href="/main.css">
</head>
<body>
<div class="nav">
<div class="navl"><a href="/">PREFETCH</a></div>
<div class="navr">
<a href="/articles/">Articles</a>&emsp;<a href="/software/">Software</a>
</div>
</div>
<hr>
<div class="content">
{% block content %}{{ section.content | safe }}{% endblock content %}
</div>
<hr>
&copy; &quot;Prefetch&quot;. &nbsp; Licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>.
</body>
</html>