templates/front/layout/publications-list.html.twig line 1

Open in your IDE?
  1. {% extends 'front/base.html.twig' %}
  2. {% block seo %}
  3.     {% include 'front/partials/seo.html.twig' %}
  4.     {% include 'front/partials/social.html.twig' %}
  5. {% endblock seo %}
  6. {% block stylesheet %}{{ parent() }}{% endblock stylesheet %}
  7. {% block layout %}
  8.     {% set properties = page.contentProperties %}
  9.     {% include 'front/heroes/hero-list.html.twig' %}
  10.     {% include 'front/partials/card-list.html.twig' with {type: 'publication'} %}
  11.     
  12.     <div class="pt-20">
  13.         {% include 'front/slices/index.html.twig' with {'slices': page.slices} %}
  14.     </div>
  15. {% endblock layout %}
  16. {% block javascript %}{{ parent() }}{% endblock javascript %}