custom/plugins/Datablue/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. {# Sortieren & Pagination #}
  3. {% block element_product_listing_pagination_nav_actions %}
  4.     <div class="cms-element-product-listing-actions row justify-content-between">
  5.         <div class="col-12 col-md-6">
  6.             {% block element_product_listing_pagination_nav_top %}
  7.                 {% sw_include '@Storefront/storefront/component/pagination.html.twig' with {
  8.                     entities: searchResult,
  9.                     criteria: searchResult.criteria
  10.                 } %}
  11.             {% endblock %}
  12.         </div>
  13.         <div class="col-12 col-md-6">
  14.             {# Sortieren Textbaustein davor#}
  15.             {% block element_product_listing_sorting %}
  16.                 <span class="db-sorting">{{ "listing.sortieren"|trans }}</span> {% sw_include '@Storefront/storefront/component/sorting.html.twig' with {
  17.                     current: searchResult.sorting,
  18.                     sortings: searchResult.availableSortings
  19.                 } %}
  20.             {% endblock %} 
  21.         </div>
  22.     </div>
  23. {% endblock %}