blob: 18b833ad6c07bd3251abe2f86e5e77924443439e (
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="navbar">
<div class="navitem navhome"><b><a href="/">PREFETCH</a></b></div>
{% for s in config.extra.sections %}
<div class="navitem"><a href="{{ s.url | safe }}">{{ s.name | safe }}</a></div>
{% endfor %}
</div>
<hr>
<div class="content">
{% block content %}{{ section.content | safe }}{% endblock content %}
</div>
<hr>
© "Prefetch". Licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>.
</body>
</html>
|