Adrianux.net/templates/base.html

33 lines
1.1 KiB
HTML
Raw Normal View History

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/">
<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">
<p><a href="mailto:ahoemann@proton.me">ahoemann@proton.me</a></p>
2025-01-16 11:36:53 +00:00
&copy; Authored by <a href="https://adrianux.net/">Adrian Hoemann</a>.
2024-11-15 07:26:13 +00:00
</footer>
</body>
</html>