{% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
{% block element_product_listing_pagination_nav_actions %}
<p class="cms-element-sidebar__additional-info--amount">
{{ searchResult.total }}
{% sw_include '@Storefront/storefront/utilities/pluralise-snippets.twig' with {
integer: searchResult.total,
plural: "listing.products"|trans|sw_sanitize,
singular: "listing.product"|trans|sw_sanitize
}%}
</p>
<div class="cms-element-product-listing-actions">
{# pagination top removed #}
<div class="sorting-container col-6 col-lg-12">
{% if "listing.sorting" %}
<span class="d-none d-lg-inline sorting-name grm-light">{{ "listing.sorting"|trans|sw_sanitize }}
</span>
{% endif %}
{% block element_product_listing_sorting %}
{{ parent() }}
{# listing view switch will be inserted here through listing switch plugin #}
{# on search page we dont want the switch #}
{% block s360_listing_switch_buttons %}
{% if activeRoute in ["widgets.search.pagelet.v2", "frontend.search.page", "frontend.search.s360searchreload"] == false %}
{{ parent() }}
{% endif %}
{% endblock %}
{% endblock %}
</div>
</div>
{% endblock %}