templates/plantillas/interna.html.twig line 1

Open in your IDE?
  1. {% extends 'base/layout-interno.html.twig' %}
  2. {% block bloque_contenido %}
  3.     <section class="text-sm-left section-40 section-md-top-75 section-md-bottom-115">
  4.       <div class="container">
  5.         <h1>{{pagina.titulo}}</h1>
  6.         {% for bloque in pagina.bloques %}
  7.             {% if bloque.nombre == "bloque_contenido" %}
  8.                 {{ bloque.html | raw }}
  9.             {% endif %}
  10.         {% endfor %}
  11.       </div>
  12.     </section>
  13. {% endblock %}