{% sw_extends "@Storefront/storefront/component/product/listing.html.twig" %}
{% block element_product_listing_col %}
{% for product in searchResult %}
{% set customerBusiness = false %}
{% set tagId = config('TwigelSportB2B.config.productTag') %}
{% if context.customer and context.customer.groupId %}
{% if context.customer.groupId in config('TwigelSportLabel.config.businessGroups') %}
{% set customerBusiness = true %}
{% endif %}
{% endif %}
{% set productTag = product.tagIds %}
{% if tagId in productTag %}
{% if customerBusiness %}
<div class="cms-listing-col {{ listingColumns }}">
{% sw_include '@Storefront/storefront/component/product/card/box.html.twig' with {
'layout': boxLayout,
'displayMode': displayMode
} %}
</div>
{% endif %}
{% else %}
<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>
{% endif %}
{% endfor %}
{% endblock %}