init commit

This commit is contained in:
2025-11-08 19:15:39 +01:00
parent ecffcb08e8
commit c7adacf53b
470 changed files with 73751 additions and 0 deletions

19
templates/base.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
{% include "includes/head.html" %}
<title>
{% block title %}
{% endblock %}
</title>
</head>
<body>
{% include "includes/navbar.html" %}
{% block content %}
{% endblock %}
{% include "includes/footer.html"%}
</body>
</html>