templates/front/layout/news-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.     <div class="page">
  9.         {% set properties = page.contentProperties %}
  10.         {% include 'front/heroes/hero-list.html.twig' %}
  11.         {% include 'front/partials/card-list.html.twig' with {type: 'news'} %}
  12.         
  13.         <div class="pt-20">
  14.             {% include 'front/slices/index.html.twig' with {'slices': page.slices} %}
  15.         </div>
  16.     </div>
  17. {% endblock layout %}
  18. {% block javascript %}{{ parent() }}{% endblock javascript %}