{% sw_extends '@Storefront/storefront/page/search/index.html.twig' %} {% block page_search %} {% if page.listing.moorlSearchResults and page.listing.moorlSearchResults|length > 0 %} {# Has advanced search results - Load tabs #} {% set activeTab = "product" %} {% set count = page.listing.total %} {% if app.request.query.get('tab') %} {% set activeTab = app.request.query.get('tab') %} {% endif %} {% for moorlSearchResult in page.listing.moorlSearchResults %} {% if moorlSearchResult.criteria.title == activeTab %} {% set count = moorlSearchResult.total %} {% endif %} {% endfor %}

{{ "moorl-foundation.search.headline"|trans({ '%count%': count, '%searchTerm%': page.searchTerm, }) }}

{# Search page #} {% sw_include '@Storefront/storefront/page/search/search-pagelet.html.twig' %}
{% else %} {# Do nothing #} {{ parent() }} {% endif %} {% endblock %}