Initial commit

This commit is contained in:
2025-01-27 21:58:12 +01:00
commit acf7b5ab6b
16 changed files with 1703 additions and 0 deletions

14
templates/base.html Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<link href="https://matcha.mizu.sh/matcha.css" rel="stylesheet">
<title>{% block title %}{{ title }}{% endblock %}</title>
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
{% block head %}{% endblock %}
</head>
<body>
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>