first commit

This commit is contained in:
maher
2026-05-16 17:26:43 +02:00
commit fcc6302ebb
406 changed files with 87325 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %} {{ titlePage }} {% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block stylesheets %}
{{ encore_entry_link_tags('app_frontend') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app_frontend') }}
{% endblock %}
</head>
{% block body %}
<body>
{% include 'frontend/basic/menu.html.twig' %}
<div class="container">
{% block content %}{% endblock %}
</div>
{% include 'frontend/basic/modal.html.twig' %}
{% include 'frontend/basic/footer.html.twig' %}
</body>
{% endblock %}
</html>