{% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
{# Moved default listing to the filter block #}
{% block element_product_listing_sorting %}{% endblock %}
{# Added data for the counter #}
{% block element_product_listing_row %}
<div class="row cms-listing-row js-listing-wrapper" data-counter-items="{{ searchResult|length }}" data-counter-total="{{ searchResult.total }}">
{% if searchResult.total > 0 %}
{% block element_product_listing_col %}
{{ parent() }}
{% endblock %}
{% else %}
{% block element_product_listing_col_empty %}
{{ parent() }}
{% endblock %}
{% endif %}
</div>
{% endblock %}