blob: 33f4fd5a9d7d84304eea5ca0c5a485a84ab5f7c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% import "macros/posts.html" as posts %}
<!DOCTYPE html>
<html lang="{{ config.default_language }}">
<head>
{% include "parts/head.html" %}
<title>{% block html_title %}{% endblock html_title %}</title>
</head>
<body>
<div id="main">
<header class="top-header">
<b><a class="header-title" href="/">{{ config.title }}</a></b>
<p class="header-description"><span class="split-horizontal">Fixing nonexistent problems</span></p>
</header>
{% include "parts/nav.html" %}
<main>
{% block content %}{% endblock %}
</main>
<footer>
© 2023 sefidel
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" /></a><br />This work is licensed under <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</footer>
</div>
</body>
</html>
|