{% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
{% block element_product_listing_col %}
{% for product in searchResult %}
{% if ((loop.index-1) % 6 == 0 and loop.index != 1) and searchResult.extensions.seoListingTexts %}
{% sw_include '@Storefront/storefront/component/listing/seo-text.html.twig' with {
'listingSeoTexts': searchResult.extensions.seoListingTexts
}%}
{% endif %}
<div class="cms-listing-col {{ listingColumns }}">
{% block element_product_listing_box %}
{% sw_include '@Storefront/storefront/component/product/card/box.html.twig' with {
'layout': boxLayout,
'displayMode': displayMode
} %}
{% endblock %}
</div>
{% endfor %}
{% endblock %}