{% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
{# Filter and sorting in one row #}
{% block element_product_listing_pagination_nav_actions %}
<div class="row">
<div class="col-12 col-lg-6 pb-3 pb-lg-0">
{% sw_include "@Storefront/storefront/element/cms-element-sidebar-filter.html.twig" ignore missing %}
</div>
<div class="col-12 col-lg-6 pb-3 pb-lg-0 text-left text-lg-right">
{% block element_product_listing_sorting %}
{% sw_include '@Storefront/storefront/component/sorting.html.twig' with {
current: searchResult.sorting,
sortings: searchResult.availableSortings
} %}
{% endblock %}
</div>
</div>
{% endblock %}