2021-08-24 22:51:20 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
{% block head %}
|
|
|
|
<head>
|
2021-08-29 19:42:37 +00:00
|
|
|
<meta charset="utf-8" />
|
2021-11-14 03:55:48 +00:00
|
|
|
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1" />
|
2021-08-29 19:42:37 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/resources/main.scss" />
|
|
|
|
<title>{{ title or claim }}</title>
|
2021-08-24 22:51:20 +00:00
|
|
|
</head>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<body>
|
2022-03-23 00:44:58 +00:00
|
|
|
|
|
|
|
<div id="header-show">
|
|
|
|
<a id="header-hide" class="burger show" href="#header-show">Open menu</a>
|
|
|
|
<a class="burger hide" href="#header-hide">Close menu</a>
|
|
|
|
</div>
|
2021-09-07 11:58:34 +00:00
|
|
|
<header>
|
2021-11-14 03:55:48 +00:00
|
|
|
<a id="logo" href="/">
|
|
|
|
<object id="logo" data="/resources/logo.svg"></object>
|
|
|
|
</a>
|
2021-09-07 11:58:34 +00:00
|
|
|
{% block menu %}{{ menu }}{% endblock %}
|
|
|
|
{% if self.header() %}
|
|
|
|
{% block header %}
|
|
|
|
{% endblock %}
|
|
|
|
{% endif %}
|
|
|
|
</header>
|
2021-08-29 19:42:37 +00:00
|
|
|
|
2021-11-14 03:55:48 +00:00
|
|
|
<main>
|
2021-12-24 02:26:59 +00:00
|
|
|
{% if messages|length %}
|
2021-11-14 03:55:48 +00:00
|
|
|
{% block messages %}
|
|
|
|
<ul class="messages">
|
|
|
|
{% for category, message in messages %}
|
|
|
|
<li class="{{ category }}">{{ message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
{% endif %}
|
2021-08-29 19:42:37 +00:00
|
|
|
|
2021-11-14 03:55:48 +00:00
|
|
|
{% block content %}
|
|
|
|
<main>
|
|
|
|
{{ content }}
|
|
|
|
</main>
|
2021-08-29 19:42:37 +00:00
|
|
|
{% endblock %}
|
2021-11-14 03:55:48 +00:00
|
|
|
{% block postfix %}{% endblock %}
|
2021-12-24 02:26:59 +00:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
<span>Feel free to ask for support at {{ support_address }}.</span>
|
|
|
|
</footer>
|
2021-09-05 23:01:09 +00:00
|
|
|
</main>
|
2021-12-24 02:26:59 +00:00
|
|
|
|
2021-08-24 22:51:20 +00:00
|
|
|
</body>
|
|
|
|
{% endblock %}
|
|
|
|
</html>
|