This commit is contained in:
constantin
2024-11-15 20:04:29 +01:00
committed by Constantin Simonis
parent 3d739af292
commit eb67e4a5eb
16 changed files with 646 additions and 36 deletions

16
templates/base.html.twig Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Files | {% block title %}{% endblock %}</title>
<link rel="icon" href="icon.png">
{% block stylesheets %}
{% endblock %}
{% block javascripts %}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>