summaryrefslogtreecommitdiff
path: root/templates/home.html
blob: 6fb143b48ab8c92b3ac9c6fb5b0cdb43b0a81c40 (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>
<style>{{ load_data(path="templates/main.css") }}</style>
<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>
<img src="/logo256.gif" style="float:left;margin-right:16px;border:2px solid #666">
{% block content %}{{ section.content | safe }}{% endblock content %}
<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>