{% extends 'base.html.twig' %} {% block body %} {# Breadcrumbs #} Accueil {% if currentCategory %} Catalogue {{ currentCategory.name }} {% else %} Catalogue {% endif %} {# Header #} {{ title_page }} {% if currentCategory and currentCategory.description %} {{ currentCategory.description }} {% endif %} {{ products|length }} produit{{ products|length > 1 ? 's' : '' }} {# Sidebar filtres #} {# Grille produits #} {% if products|length > 0 %} {% for product in products %} {% include '_partials/_product_card.html.twig' with { product: product, site: site, displayHT: site.catalogDisplayHT|default(false) } %} {% endfor %} {% else %} Aucun produit trouve Revenez bientot, notre catalogue s'enrichit regulierement. {% if currentCategory %} Voir tout le catalogue {% endif %} {% endif %} {% endblock %}
{{ currentCategory.description }}
Revenez bientot, notre catalogue s'enrichit regulierement.