Adrianux.net/templates/base.html
ahoemann 546a5ab34c
All checks were successful
/ update (push) Successful in 0s
fix: removed Copywrite
2025-01-16 12:36:53 +01:00

32 lines
1.1 KiB
HTML

<!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') }}" />
<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>
<li><a href="monitoring">Monitoring</a></li>
<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>
&copy; Authored by <a href="https://adrianux.net/">Adrian Hoemann</a>.
</footer>
</body>
</html>