templates/widget/selective-output-products/default.html.twig line 1

Open in your IDE?
  1. <section class="product-list ">
  2.     <div class="container">
  3.         <div class="product-list__content">
  4.             {% if title %}
  5.                 <div class="product-list__heading section-heading">
  6.                     <div class="container">
  7.                         <h3 class="h4 section-title"> {{ title|default|raw }} </h3>
  8.                     </div>
  9.                 </div>
  10.             {% endif %}
  11.             <div class="product-list__items {{ display_variant is defined and display_variant ? display_variant }}">
  12.                 {% for product in choice_products %}
  13.                     {% if product %}
  14.                         {{ render_product_card(product) }}
  15.                     {% endif %}
  16.                 {% endfor %}
  17.             </div>
  18.         </div>
  19.     </div>
  20. </section>