2024-06-05 08:03:32 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ari::web -> {% block title %}Untitled{% endblock %}</title>
<link rel="icon" href="{{ url_for("views.favicon") }}" sizes="128x128" type="image/vnd.microsoft.icon" />
<meta name="description" content="{% block description %}Description of an untitled page.{% endblock %}" />
<meta
name="keywords"
content="ari archer, ari, archer, arija, arija a, ari-web, aw, open source, foss, developer, open source developer, website, python, c, blog, agpl, gpl, dev, lithuania, {% block keywords %}test{% endblock %}"
/>
<meta
name="robots"
content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"
/>
<meta property="og:type" content="{% block type %}website{% endblock %}" />
<meta name="color-scheme" content="dark" />
<meta name="theme-color" content="{% block colour %}#121212{% endblock %}" />
<meta name="foss:src" content="{{ url_for("views.git") }}" />
<meta name="license" content="AGPL-3.0-or-later" />
<link rel="manifest" href="{{ url_for("views.manifest") }}" />
<link rel="stylesheet" href="{{ url_for("static", filename="css/base.css") }}" type="text/css" referrerpolicy="no-referrer" />
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
<article>
<header>{% block header %}{% endblock %}</header>
2024-06-06 17:23:49 +03:00
<main>
{% with messages = get_flashed_messages(with_categories=True) %}
{% if messages %}
<details open>
<summary>messages from the server</summary>
{% for category, message in messages %}
2024-06-07 18:45:31 +03:00
<div><b>[{{ category | escape }}] {{ message | escape }}</b></div>
2024-06-06 17:23:49 +03:00
{% endfor %}
</details>
{% endif %}
{% endwith %}
{% block main %}{% endblock %}
</main>
2024-06-05 08:03:32 +03:00
<footer>
2024-06-06 02:22:49 +03:00
<i>The <a target="_blank" href="{{ url_for('views.git') }}">source code</a> and all content, except the Nerd Hack font (see <a target="_blank" href="{{ url_for("static", filename="fonts/LICENSE") }}">Nerd Hack font license</a>), are licensed under the <a target="_blank" href="https://www.gnu.org/licenses/agpl-3.0.en.html">AGPL-3.0-or-later</a> by Ari Archer <<a target="_blank" href="mailto:ari@ari.lt">ari@ari.lt</a>> as a part of the <a href="{{ url_for("views.badge") }}" target="_blank">ari-web</a> project. Copyright 2019-{{ current_year }}.</i>
2024-06-05 08:03:32 +03:00
</footer>
</article>
</body>
</html>