templates/web/customer/items_list/product/center/list/body.twig line 1

Open in your IDE?
  1. {##
  2.  # Products list (list variant)
  3.  #}
  4. {{ widget_list('itemsList.product.cart') }}
  5. <div class="products">
  6.   {% if this.getPageData() %}
  7.     <ul class="products-list">
  8.       {% for product in this.getPageData() %}
  9.         <li class="product-cell">
  10.           {{ this.getProductWidgetContent(product)|raw }}
  11.         </li>
  12.       {% endfor %}
  13.     </ul>
  14.   {% endif %}
  15. </div>