Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
212
/
task
/
212
/
root
/
proc
/
212
/
root
/
proc
/
70528
/
cwd
/
templates
/
front
/
category
/
//proc/212/task/212/root/proc/212/root/proc/70528/cwd/templates/front/category/products.html.twig
{% extends "front/layout.html.twig" %} {% block title %}{{ category.metaTitle }}{% endblock %} {% block description %}{{ category.metaDescription }}{% endblock %} {% block keywords %}{{ category.metaKeywords }}{% endblock %} {% block content %} <div class="container my-5"> <div class="breadcrums"> <a href="{{ path("app_homepage") }}" class="breadcrum">Accueil</a> <img src="{{ asset("build/images/icon/breadcrum.png") }}" alt="Picto"> <div class="breadcrum">{{ category.name }}</div> </div> <h1>Produits de la catégorie {{ category.name }}</h1> <hr> <div class="row mt-5"> {% for product in products %} {% include "front/product/block/card.html.twig" %} {% endfor %} {% if products|length < 1 %} <div class="text-center"> Aucun produit dans la catégorie </div> {% endif %} </div> </div> {% endblock %}