This commit is contained in:
2026-01-12 22:19:41 +02:00
commit d6be7111f9
13 changed files with 1397 additions and 0 deletions

16
templates/base.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ self.title() }}</title>
</head>
<body>
{% include "header.html" %}
<main>
{% block content %}{% endblock %}
</main>
{% include "footer.html" %}
</body>
</html>