custom/plugins/SelfdelveCms/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. {# Filter and sorting in one row #}
  3. {% block element_product_listing_pagination_nav_actions %}
  4.     <div class="row">
  5.         <div class="col-12 col-lg-6 pb-3 pb-lg-0">
  6.             {% sw_include "@Storefront/storefront/element/cms-element-sidebar-filter.html.twig" ignore missing %}
  7.         </div>
  8.         <div class="col-12 col-lg-6 pb-3 pb-lg-0 text-left text-lg-right">
  9.                 {% block element_product_listing_sorting %}
  10.                     {% sw_include '@Storefront/storefront/component/sorting.html.twig' with {
  11.                         current: searchResult.sorting,
  12.                         sortings: searchResult.availableSortings
  13.                     } %}
  14.                 {% endblock %}
  15.         </div>
  16.     </div>
  17. {% endblock %}