add base template + mainController

This commit is contained in:
Olivier PARPAILLON
2024-11-18 15:52:10 +01:00
parent e0935ec69d
commit e5307da3e1
6 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Sortie</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
<div class="bg-gray-100 flex items-center justify-center">
&copy; Sortie {{ "now"|date("Y") }}
</div>
</body>
</html>