templates/produit/single_product.html.twig line 1

Open in your IDE?
  1. <div class="product-item text-center">
  2.     <a href="{{path('produit', {'slug': produit.slug})}}"><img src="/uploads/{{produit.illustration}}" alt="{{produit.name}}" class="img-fluid"></a>
  3.     <h5> {{produit.name}} </h5>
  4.     <span class="product-subtitle"> {{produit.subtitle}} </span/>
  5.     <span class="produit-price">  {{(produit.price / 100)|number_format(2, ',','.')}}€ </span/>
  6. </div>