templates/base/layout.html.twig line 1

Open in your IDE?
  1. {% extends "layout.html.twig" %}
  2. {% block bloque_stylesheet %} 
  3.     {{ parent() }}
  4. {% endblock %}
  5. {% block bloque_body %} 
  6.     {{ parent() }}
  7.     <div class="page">
  8.         <header class="page-head header-swiper">
  9.             {% include 'base/_header.html.twig' %}
  10.         </header>
  11.         <main class="page-content">
  12.             {% block bloque_contenido %}{% endblock %}
  13.         </main>
  14.         
  15.         {% include 'base/_footer.html.twig' %}
  16.     </div>
  17. {% endblock %}