{% extends "base.html" %} {% import "macros/ui.html" as ui %} {% block title %}{{ category.name }}{% endblock title %} {% block content %} {% set L = lang | default(value='sk') %}

{{ category.name }}

{% if category.description %}

{{ category.description }}

{% endif %} {% if children | length > 0 %}
{% for child in children %} {{ child.name }} {% endfor %}
{% endif %}
{# Same search + filters as the shop, with this category preselected. #} {% include "shop/_search.html" %}
{% endblock content %}