46 lines
1,006 B
HTML
46 lines
1,006 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ site.title }}</title>
|
|
<link rel="stylesheet" href="{{ 'assets/css/main.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 %} class="current"{% endif %}>
|
|
<a href="{{ item.link }}">{{ item.name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
<footer>
|
|
<div><p>{{ site.description }}</p></div>
|
|
<div>
|
|
<p>
|
|
Email: <a href="mailto:owo@fef.moe">owo@fef.moe</a>
|
|
<br>
|
|
|
|
Fediverse:
|
|
<a rel="me" href="https://{{ site.author.fedi.host }}/@{{ site.author.fedi.user }}">
|
|
@{{ site.author.fedi.user }}@{{ site.author.fedi.host }}
|
|
</a>
|
|
<br>
|
|
|
|
<a href="/pgp.txt">PGP key</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|