first commit

This commit is contained in:
maher
2025-10-30 13:13:41 +01:00
commit ecd64aad53
404 changed files with 82238 additions and 0 deletions

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>