templates/front/catalog/product/view/list.html.twig line 1

Open in your IDE?
  1. {% if wrapperTag is not defined %}
  2. {% set wrapperTag = 'ul' %}
  3. {% endif %}
  4. {% if wrapperTag %}
  5. <{{ wrapperTag }} class="product-list">
  6. {% endif %}
  7. {% for p in products %}
  8. {% include 'front/catalog/product/view/list-item.html.twig' with {product:p} %}
  9. {% endfor %}
  10. {% if wrapperTag %}
  11. </{{ wrapperTag }}>
  12. {% endif %}