{# Results region: swapped in by htmx on each query/filter change and rendered server-side on first load. Holds the result summary, the product grid and pagination. #} {% set L = lang | default(value='sk') %} {# On htmx responses the toolbar's Sort dropdown isn't in this swapped region; re-render it out-of-band so a search-triggered "newest โ†’ relevance" switch is reflected in the visible selection. #} {% if is_fragment | default(value=false) %}{% set oob = true %}{% include "shop/_sort_select.html" %}{% endif %}

{{ t(key="results-count", lang=L, count=total) }}{% if query and query != "" %} ยท โ€œ{{ query }}โ€{% endif %}

{% if query_base and query_base != "" %} {{ t(key="filter-clear", lang=L) }} {% endif %}
{% if products | length > 0 %} {% include "shop/_product_grid.html" %} {% if pages > 1 %} {% endif %} {% elif query and query != "" %}
{{ t(key="search-empty", lang=L) }} {{ query }}
{% else %}
{{ t(key="shop-empty", lang=L) }}
{% endif %}