init project

This commit is contained in:
2022-11-28 10:06:38 +01:00
commit 594e587724
73 changed files with 62285 additions and 0 deletions

15
templates/base.html.twig Executable file
View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{% endblock title %} - MAPS360</title>
{% block head %}
{% include 'includecss.html.twig' %}
{% endblock head %}
</head>
<body>
{% block body %}{% endblock body %}
{% block footer %}{% include 'includescript.html.twig' %}{% endblock footer %}
</body>
</html>