templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4. {% include 'headers/header.html.twig' %}
  5. {% block canon_url_search %}
  6. {% endblock %}
  7.     </head>
  8.     <body>
  9.         <div id="pageWrapper">
  10. {% include 'headers/header_content.html.twig' %}
  11. {% block content %}
  12. {% endblock %}
  13.     </div>
  14. {% block footer %}
  15. {% include 'footers/footer.html.twig' %}
  16. {% endblock %}
  17.     </body>
  18. </html>