custom/plugins/EsmComputer/src/Resources/views/storefront/component/product/listing.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
  2. {% block element_product_listing_col %}
  3.     {% for product in searchResult %}
  4.         {% if ((loop.index-1) % 6 == 0 and loop.index != 1) and searchResult.extensions.seoListingTexts %}
  5.             {% sw_include '@Storefront/storefront/component/listing/seo-text.html.twig' with {
  6.                 'listingSeoTexts': searchResult.extensions.seoListingTexts
  7.             }%}
  8.         {% endif %}
  9.         <div class="cms-listing-col {{ listingColumns }}">
  10.             {% block element_product_listing_box %}
  11.                 {% sw_include '@Storefront/storefront/component/product/card/box.html.twig' with {
  12.                     'layout': boxLayout,
  13.                     'displayMode': displayMode
  14.                 } %}
  15.             {% endblock %}
  16.         </div>
  17.     {% endfor %}
  18. {% endblock %}