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