<div class="h-100 border border-pink">
{% if brand.images|first != false %}
{% set path = brand.images|first.path|imagine_filter(filter|default('sylius_shop_product_thumbnail')) %}
{% if brand.images.first.alt is defined %}
{% set alt = brand.images.first.alt %}
{% else %}
{% set alt = brand.name %}
{% endif %}
{% else %}
{% set path = asset('images/spacer.png') %}
{% set alt = brand.name %}
{% endif %}
<div>
<img src="{{ path }}" {{ sylius_test_html_attribute('main-image') }} alt="{{ alt }}" class="w-100" />
</div>
<div class="p-2 bg-primary-site text-white text-center">
<h3 class="libelle-brand text-white"> {{ brand.name }} </h3>
{% set totalProductBrand = app_get_total_product_by_brand(brand) %}
<span class="d-block">{{ (totalProductBrand|length) }} article(s)</span>
</div>
</div>