{# Card produit réutilisable Variables : product (Product), site (Site), displayHT (bool, optionnel) #} {% set displayHT = displayHT|default(false) %}
{% set cardMedia = product.image ?? (product.galleryImages|length > 0 ? product.galleryImages|first.media : null) %} {% if cardMedia %} {{ product.title }} {% else %}
{% endif %} {# Badges #} {% if product.onSale %} Promo {% endif %} {% if product.availability.value == 'unavailable' %} Indisponible {% elseif product.availability.value == 'on_request' %} Sur devis {% endif %}
{% if product.category %} {{ product.category.name }} {% endif %}

{{ product.title }}

{% if product.shortDescription %}

{{ product.shortDescription|length > 100 ? product.shortDescription|slice(0, 100) ~ '…' : product.shortDescription }}

{% endif %}