Adrianux.net/templates/base.html

32 lines
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/">
2024-11-19 11:24:50 +00:00
<link rel="stylesheet" href="css/pico.min.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>
<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; Copyright 2024 by <a href="https://adrianux.net/">Adrian Hoemann</a>.
</footer>
</body>
</html>