2021-02-11 01:38:11 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2021-02-11 20:52:39 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2021-02-14 22:50:03 +01:00
|
|
|
<meta name="theme-color" content="#e1327b">
|
2021-02-11 19:12:20 +01:00
|
|
|
|
2021-02-11 01:38:11 +01:00
|
|
|
<link rel="stylesheet" href="{{ 'assets/css/main.css' | relative_url }}">
|
2021-02-11 18:45:38 +01:00
|
|
|
<link rel="stylesheet" href="{{ 'assets/fonts/oleoscript.css' | relative_url }}">
|
2021-02-11 19:12:20 +01:00
|
|
|
|
2021-02-11 01:38:11 +01:00
|
|
|
<link rel="alternate" type="application/atom+xml" title="Atom feed" href="{{ '/feed.xml' | relative_url }}">
|
|
|
|
|
|
|
|
{% seo %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<h1>{{ site.title }}</h1>
|
2021-02-11 16:19:37 +01:00
|
|
|
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
{% for item in site.data.navigation %}
|
2021-02-14 14:16:44 +01:00
|
|
|
<li{% if page.url == item.link %} aria-current="page"{% endif %}>
|
2021-02-11 16:19:37 +01:00
|
|
|
<a href="{{ item.link }}">{{ item.name }}</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2021-02-11 01:38:11 +01:00
|
|
|
</header>
|
2021-02-11 15:55:26 +01:00
|
|
|
<main>
|
|
|
|
{{ content }}
|
|
|
|
</main>
|
2021-02-11 01:38:11 +01:00
|
|
|
<footer>
|
2021-02-11 19:30:17 +01:00
|
|
|
<div class="container">
|
|
|
|
<div>
|
|
|
|
<p>{{ site.description }}</p>
|
|
|
|
<p>
|
2021-02-11 21:21:21 +01:00
|
|
|
All content is released under the
|
|
|
|
<a href="https://creativecommons.org/licenses/by-nc/4.0/">CC-BY-NC 4.0</a>
|
|
|
|
license except where noted otherwise.
|
2021-02-11 19:30:17 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div>
|
2021-02-11 21:21:21 +01:00
|
|
|
<ul style="list-style-type:none;padding:0">
|
|
|
|
<li>Email: <a href="mailto:{{ site.author.email }}">{{ site.author.email }}</a></li>
|
|
|
|
<li>
|
|
|
|
Fediverse:
|
|
|
|
<a rel="me" href="https://{{ site.author.fedi.host }}/@{{ site.author.fedi.user }}">
|
|
|
|
@{{ site.author.fedi.user }}@{{ site.author.fedi.host }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2021-02-11 21:57:17 +01:00
|
|
|
{% if site.hs_url %}
|
|
|
|
<li><a href="{{ site.hs_url }}">Hidden Service mirror</a></li>
|
|
|
|
{% endif %}
|
2021-02-11 23:39:51 +01:00
|
|
|
<li><a href="{{ '/feed.xml' | relative_url }}">Atom feed</a></li>
|
2021-02-11 21:21:21 +01:00
|
|
|
<li><a href="/pgp.txt">PGP key</a></li>
|
2021-02-25 23:20:11 +01:00
|
|
|
<li><a href="https://git.fef.moe/fef">Gitea</a></li>
|
2021-02-11 21:21:21 +01:00
|
|
|
</ul>
|
2021-02-11 19:30:17 +01:00
|
|
|
</div>
|
2021-02-11 01:38:11 +01:00
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|