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.

26 lines
797B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>{% block title %}Aux Actes Citoyens{% endblock %}</title>
  7. {% block meta %}{% endblock %}
  8. <link rel="icon" type="image/png" href="{{ asset('assets/img/favicon-aac.png') }}"/>
  9. {{ encore_entry_link_tags('app-frontend') }}
  10. {% block stylesheets %}{% endblock %}
  11. </head>
  12. {% set current_path = app.request.get('_route') %}
  13. <body id="{{ current_path }}">
  14. {% block header %}
  15. {% include 'frontend/header.html.twig' %}
  16. {% endblock %}
  17. {% block body %}{% endblock %}
  18. {% block footer %}
  19. {% include 'frontend/footer.html.twig' %}
  20. {% endblock %}
  21. {{ encore_entry_script_tags('app-frontend') }}
  22. {% block javascripts %}{% endblock %}
  23. </body>
  24. </html>