blog/_layouts/default.html

48 lines
1.1 KiB
HTML
Raw Normal View History

2021-02-11 01:38:11 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ site.title }}</title>
<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 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 %}
<li{% if page.url == item.link %} class="current"{% endif %}>
<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>
<div><p>{{ site.description }}</p></div>
<div>
<p>
Email: <a href="mailto:owo@fef.moe">owo@fef.moe</a>
<br>
2021-02-11 15:55:26 +01:00
2021-02-11 01:38:11 +01:00
Fediverse:
<a rel="me" href="https://{{ site.author.fedi.host }}/@{{ site.author.fedi.user }}">
@{{ site.author.fedi.user }}@{{ site.author.fedi.host }}
</a>
2021-02-11 15:55:26 +01:00
<br>
<a href="/pgp.txt">PGP key</a>
2021-02-11 01:38:11 +01:00
</p>
</div>
</footer>
</body>
</html>