mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-05 18:09:24 +01:00
46 lines
2.2 KiB
Text
46 lines
2.2 KiB
Text
|
<!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>
|
||
|
<main>{% block main %}{% endblock %}</main>
|
||
|
<footer>
|
||
|
<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>>. Copyright 2020-{{ current_year }}.</i>
|
||
|
</footer>
|
||
|
</article>
|
||
|
</body>
|
||
|
</html>
|