98 lines
3.3 KiB
HTML
98 lines
3.3 KiB
HTML
<!doctype html>
|
|
<html lang="{% if page.lang %}{{ page.lang }}{% else %}en{% endif %}">
|
|
<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 }}">
|
|
|
|
{% if page.url == '/404.html' %}
|
|
<link rel="stylesheet" type="text/css" href="{{ '/assets/css/404.css' | relative_url }}">
|
|
{% endif %}
|
|
|
|
|
|
<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>
|
|
<p>
|
|
<img alt="MAINTAINED BY A QUEER FOLK." src="{{ '/assets/img/enby.png' | relative_url }}" width="64" height="32">
|
|
<a href="https://getfirefox.org/" class="nostyle">
|
|
<img alt="Firefox NOW!" src="{{ '/assets/img/firefoxnow.gif' | relative_url }}" width="88" height="31">
|
|
</a>
|
|
<a href="https://validator.w3.org/nu/?doc=https%3A%2F%2Ffef.moe%2F" class="nostyle">
|
|
<img alt="W3C HTML5" src="{{ '/assets/img/html5.png' | relative_url }}" width="88" height="31">
|
|
</a>
|
|
<img alt="This site is certified 100% cookie free!" src="{{ '/assets/img/nocookie.gif' | relative_url }}" width="88" height="31">
|
|
<img alt="always wear your programming socks" src="{{ '/assets/img/programmingsocks.gif' | relative_url }}" width="129" height="38">
|
|
<a href="https://www.freebsd.org/" class="nostyle">
|
|
<img alt="Powered by FreeBSD" src="{{ '/assets/img/freebsd.gif' | relative_url }}" width="171" height="64">
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<ul>
|
|
<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.author.twitter %}
|
|
<li>
|
|
Twitter:
|
|
<a rel="me" href="https://twitter.com/{{ site.author.twitter }}">
|
|
@{{ site.author.twitter }}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if site.author.matrix %}
|
|
<li>
|
|
Matrix:
|
|
<a rel="me" href="https://matrix.to/#/@{{ site.author.matrix.user }}:{{ site.author.matrix.host }}">
|
|
@{{ site.author.matrix.user }}:{{ site.author.matrix.host }}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% 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="/canary.txt">Proof of identity</a></li>
|
|
<li><a href="https://git.fef.moe/fef">Gitea</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|