templates/web/customer/items_list/product/center/grid/body-css-layout.twig line 1

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