2024-11-15 07:26:13 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
{% block head %}
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
<meta name="description" content="the main Adrianux page">
|
|
|
|
<link rel="canonical" href="https://adrianux.net/">
|
2024-11-19 16:23:18 +00:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/pico.css') }}" />
|
2024-11-15 07:26:13 +00:00
|
|
|
<title>{% block title %}{% endblock %} - Adrianux.net</title>
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<nav class="container">
|
|
|
|
<ul>
|
|
|
|
<li><a href="/">Homepage</a></li>
|
|
|
|
<li><a href="imprint">Imprint</a></li>
|
|
|
|
<li><a href="about">About</a></li>
|
2024-12-02 11:35:08 +00:00
|
|
|
<li><a href="monitoring">Monitoring</a></li>
|
2024-11-15 07:26:13 +00:00
|
|
|
<li><a href="https://git.adrianux.net/ahoemann">Git</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<body>
|
|
|
|
<main class="container">
|
|
|
|
<h1>{{ self.title() }}</h1>
|
|
|
|
<article>{% block content %}{% endblock %}</article>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<footer class="container">
|
2025-01-16 11:38:13 +00:00
|
|
|
<p><a href="mailto:ahoemann@proton.me">ahoemann@proton.me</a>
|
|
|
|
</p>Authored by <a href="https://adrianux.net/">Adrian Hoemann</a>.
|
2024-11-15 07:26:13 +00:00
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|