Adrianux.net/templates/base.j2
ahoemann 7e5819f8b8
Some checks are pending
/ build (push) Waiting to run
feat: added pytsebin link
2025-03-28 12:55:48 +01:00

33 lines
1.2 KiB
Django/Jinja

<!DOCTYPE html>
<html lang="en" data-theme="light">
<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="https://cloud.adrianux.net">Monitoring</a></li>
<li><a href="https://git.adrianux.net">Git</a></li>
<li><a href="https://bin.adrianux.net">Bin</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>Authored by <a href="https://adrianux.net/">Adrian Hoemann</a>.
</footer>
</body>
</html>