62 lines
1.7 KiB
HTML
62 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="theme-color" content="#e1327b">
|
|
|
|
<link rel="stylesheet" href="{{ 'assets/css/main.css' | relative_url }}">
|
|
<link rel="stylesheet" href="{{ 'assets/fonts/oleoscript.css' | relative_url }}">
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="Atom feed" href="{{ '/feed.xml' | relative_url }}">
|
|
|
|
{% seo %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>{{ site.title }}</h1>
|
|
|
|
<nav>
|
|
<ul>
|
|
{% for item in site.data.navigation %}
|
|
<li{% if page.url == item.link %} aria-current="page"{% endif %}>
|
|
<a href="{{ item.link }}">{{ item.name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
<footer>
|
|
<div class="container">
|
|
<div>
|
|
<p>{{ site.description }}</p>
|
|
<p>
|
|
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.
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<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>
|
|
{% if site.hs_url %}
|
|
<li><a href="{{ site.hs_url }}">Hidden Service mirror</a></li>
|
|
{% endif %}
|
|
<li><a href="{{ '/feed.xml' | relative_url }}">Atom feed</a></li>
|
|
<li><a href="/pgp.txt">PGP key</a></li>
|
|
<li><a href="https://git.fef.moe/fef">Gitea</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|