custom/plugins/Biowine/src/Resources/views/storefront/component/product/listing.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
  2. {% block element_product_listing_col %}
  3.     {% for product in searchResult %}
  4.         <div class="cms-listing-col col-sm-6 col-lg-6 col-xl-6">
  5.             {% block element_product_listing_box %}
  6.                 {% sw_include '@Storefront/storefront/component/product/card/box.html.twig' with {
  7.                     'layout': boxLayout,
  8.                     'displayMode': displayMode
  9.                 } %}
  10.             {% endblock %}
  11.         </div>
  12.     {% endfor %}
  13. {% endblock %}
  14. {% block product_listing %}
  15.     {{ parent() }}
  16. {% endblock %}