templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. {% apply spaceless %}
  3.     {% block html %}
  4.         <html>
  5.             {# Head #}
  6.             {% block head_container %}
  7.                 {% block head %}
  8.                     {% include 'layout/head.html.twig' %}
  9.                 {% endblock %}
  10.             {% endblock %}
  11.             {# Body #}
  12.             {% block body %}
  13.                 <body class="is--route-{{ app.request.attributes.get('_route') }}">
  14.                     {# Header #}
  15.                     {% block header %}
  16.                         {% include 'layout/header.html.twig' %}
  17.                     {% endblock %}
  18.                     {# Content #}
  19.                     {% block content_wrapper %}
  20.                         <div class="content--wrapper">
  21.                             {% block content %}{% endblock %}
  22.                         </div>
  23.                     {% endblock %}
  24.                     {# Footer #}
  25.                     {% block footer %}
  26.                         {% include 'layout/footer.html.twig' %}
  27.                     {% endblock %}
  28.                 </body>
  29.             {% endblock %}
  30.         </html>
  31.     {% endblock %}
  32. {% endapply %}