_base.tera.html
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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>{% block title %}{% endblock %} | {{ site.name }}</title>
<link rel="stylesheet" href="/static/stylesheets/theme.css">
{% block feed %}
<link rel="alternate" type="application/atom+xml" href="{{ site.link | safe }}atom.xml">
{% endblock %}
</head>
<body>
<header id="site-header">
<div id="site-link">
<a href="/">{{ site.name }}</a>
</div>
<nav id="site-menu">
<div class="ge-large-screen">
<ul class="wide-menu">
{% for item in site.menu %}
<li><a href="{{ item.link }}">{{ item.name }}</a></li>
{% endfor %}
</ul>
</div>
<div class="le-medium-screen">
<details>
<summary>Menu</summary>
<ul class="narrow-menu">
{% for item in site.menu %}
<li><a href="{{ item.link }}">{{ item.name }}</a></li>
{% endfor %}
</ul>
</details>
</div>
</nav>
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer id="site-footer">
<span><a href="/atom.xml">Atom feed</a> • Powered by <a href="https://git.echowritescode.dev/repository/web-pylon/head">web-pylon</a> v{{ site.version }}</span>
</footer>
{% block scripts %}{% endblock %}
</body>
</html>