32 lines
1.3 KiB
Text
32 lines
1.3 KiB
Text
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% if data.tite %}{{ data.title }} | {% endif %}{{ page.title }}</title>
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌌</text></svg>">
|
|
<link rel="stylesheet" href="{{ '/assets/style.css' | url }}" />
|
|
</head>
|
|
<body>
|
|
<main class="{{ page.url | pageClasses }}">
|
|
<header><a href="{{ '/' | url }}" title="Back to the homepage">{{ content | header | safe }}</a></header>
|
|
<aside class="metadata" role="contentinfo">
|
|
{% block metadata %}
|
|
{% endblock %}
|
|
</aside>
|
|
<aside class="navigation" role="navigation">
|
|
<h1>{{ page.title }}</h1>
|
|
{% block sidebar %}
|
|
{% endblock %}
|
|
</aside>
|
|
<article>
|
|
{% block content %}
|
|
{{ content | safe }}
|
|
{% endblock %}
|
|
</article>
|
|
<footer>
|
|
Contents are published under <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">CC-BY-SA</a> unless noted otherwise. If you wish to contact me, feel free to reach out at <em>hi at this domain</em>.
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|