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. {% if p.model %}
  9. {% include 'front/catalog/model/view/list-item.html.twig' with {model:p.topProductModel, product:p} %}
  10. {% else %}
  11. {% include 'front/catalog/product/view/list-item.html.twig' with {product:p} %}
  12. {% endif %}
  13. {% endfor %}
  14. {% if wrapperTag %}
  15. </{{ wrapperTag }}>
  16. {% endif %}