templates/front/blocks/block-four-tiles.twig line 1

Open in your IDE?
  1. <section class="four-square container-xxl container py-5">
  2.     <div class="row justify-content-between">
  3.         {% for slide in entity.slides|default([]) %}
  4.             {% if loop.index > 4 %}
  5.             {% else %}
  6.                 {% include 'front/blocks/block-single-tile.twig' with { slide: slide } %}
  7.             {% endif %}
  8.         {% endfor %}
  9.     </div>
  10. </section>