custom/plugins/NgsShopRestrict/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_pagination_nav_actions %}
  3.      <div class="cms-element-product-listing-actions row justify-content-between">
  4.          <div class="col-md-auto">
  5.              {% block element_product_listing_pagination_nav_top %}
  6.                  {% sw_include '@Storefront/storefront/component/pagination.html.twig' with {
  7.                      entities: searchResult,
  8.                      criteria: searchResult.criteria
  9.                  } %}
  10.              {% endblock %}
  11.          </div>
  12.          {% if page.extensions.notAllowedRoutes.isAllowedRoute('frontend.cms.navigation.page') !== false %}
  13.              <div class="col-md-auto">
  14.                  {% block element_product_listing_sorting %}
  15.                      {% sw_include '@Storefront/storefront/component/sorting.html.twig' with {
  16.                          current: searchResult.sorting,
  17.                          sortings: searchResult.availableSortings
  18.                      } %}
  19.                  {% endblock %}
  20.              </div>
  21.          {% endif %}
  22.      </div>
  23.  {% endblock %}