templates/base.html.twig line 1

  1. {% set route_name = app.request.attributes.get('_route') %}
  2. <!DOCTYPE html>
  3. <html lang="fr">
  4.     {% include('include/head.inc.twig') with {title: block('title'), head_scripts: block('head_scripts') is defined ? block('head_scripts') : ''} %}
  5.     {{ include('include/header.inc.twig') }}
  6.     <main class="{% block body_class %}{% endblock %}">
  7.         {% block body %}{% endblock %}
  8.     </main>
  9.     {% include('include/footer.inc.twig') with {footer_scripts: block('footer_scripts') is defined ? block('footer_scripts') : ''} %}
  10. </html>