{% extends "base.html" %} {% import "macros/ui.html" as ui %} {% block title %}{{ category.name }}{% endblock title %} {% block content %}

{{ category.name }}

{% if category.description %}

{{ category.description }}

{% endif %} {% if children | length > 0 %}
{% for child in children %} {{ child.name }} {% endfor %}
{% endif %}
{% if products | length > 0 %} {% include "shop/_product_grid.html" %} {% else %}
{{ t(key="shop-empty", lang=lang | default(value='sk')) }}
{% endif %}
{% endblock content %}