templates/elements/pagesElements/products/_products_buyed_with.html.twig line 1

Open in your IDE?
  1. {% if withProducts|length > 0 %}
  2.     <div class="my-5">
  3.         <div class="middle-line">
  4.             <h2 class="section-title middle-line-text">{{ "Souvent acheté avec" | trans }}</h2>
  5.         </div>
  6.     </div>
  7.     <div class="row">
  8.         {% for product in withProducts %}
  9.             {{ include('elements/pagesElements/products/_product.html.twig', {product: product, column: "col-6 col-lg-3"}) }}
  10.         {% endfor %}
  11.     </div>
  12. {% endif %}