You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <title>{% block title %}Aux Actes Citoyens{% endblock %}</title>
-
- {% block meta %}{% endblock %}
- <link rel="icon" type="image/png" href="{{ asset('assets/img/favicon-aac.png') }}"/>
- {{ encore_entry_link_tags('app-frontend') }}
- {% block stylesheets %}{% endblock %}
- </head>
- {% set current_path = app.request.get('_route') %}
- <body id="{{ current_path }}">
- {% block header %}
- {% include 'frontend/header.html.twig' %}
- {% endblock %}
- <div id="content-page">
- {% block body %}{% endblock %}
- </div>
- {% block footer %}
- {% include 'frontend/footer.html.twig' %}
- {% endblock %}
- {{ encore_entry_script_tags('app-frontend') }}
- {% block javascripts %}{% endblock %}
- </body>
- </html>
|