2024-04-20 00:02:14 +02:00
|
|
|
<!doctype html>
|
2023-02-06 12:20:18 +01:00
|
|
|
<html lang="de">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="description" content="{{ config.description }}">
|
2023-02-15 05:22:13 +01:00
|
|
|
<title>{% block title %}{% endblock title %}</title>
|
2024-04-20 00:02:14 +02:00
|
|
|
<link href="{{ get_url(path="normalize.css", trailing_slash=false) }}" rel="stylesheet">
|
|
|
|
<link href="{{ config.base_url | safe}}/onders.org.css" rel="stylesheet">
|
2023-02-06 12:20:18 +01:00
|
|
|
<link rel="icon" href="/favicon.png" type="image/png" sizes="16x16">
|
|
|
|
{% if config.generate_feed %}
|
|
|
|
<link rel="alternate" type="application/rss+xml" title="rss" href="/rss.xml">
|
|
|
|
{% endif %}
|
|
|
|
{% block js %}
|
|
|
|
{% endblock js %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-04-20 00:02:14 +02:00
|
|
|
<main class="container">
|
|
|
|
<header>
|
|
|
|
<h1>{{ config.title }}</h1>
|
|
|
|
{% block subtitle %}{% endblock subtitle %}
|
|
|
|
</header>
|
|
|
|
{% include "navbar.html" %}
|
|
|
|
{% block content %} {% endblock content %}
|
|
|
|
{% include "navbar.html" %}
|
|
|
|
<footer>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="/credits">credits</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="/rss.xml">RSS feed</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</footer>
|
|
|
|
</main>
|
2023-02-06 12:20:18 +01:00
|
|
|
</body>
|
|
|
|
</html>
|