Initial commit

This commit is contained in:
2024-12-05 22:56:57 +01:00
commit 1df066fe6c
9 changed files with 787 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<!doctype html>
<html lang="de">
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='reset.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}" />
{% block head %}
<title>{% block title %}{% endblock %}</title>
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
{% endblock %}
</div>
</body>
</html>