custom/plugins/SelfdelveCms/src/Resources/views/storefront/block/cms-block-usps.html.twig line 1

Open in your IDE?
  1. {% block block_usps %}
  2.     {% for i in 0..1 %}
  3.         <div class="w-100 d-flex justify-content-center">
  4.             {% for j in 1..3 %}
  5.                 {% set index = (i*3)+j %}
  6.                 {% set element = block.slots.getSlot('item' ~ index) %}
  7.                 {% if element %}
  8.                     {% block block_usps_item %}
  9.                         <div class="text-center">
  10.                             {% sw_include "@Storefront/storefront/element/cms-element-image-icon.html.twig" ignore missing %}
  11.                         </div>
  12.                     {% endblock %}
  13.                 {% endif %}
  14.             {% endfor %}
  15.         </div>
  16.     {% endfor %}
  17. {% endblock %}