{% extends "base.html" %} {% 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 %}
{% for product in products %} {% include "shop/_card.html" %} {% endfor %}
{% else %}
{{ t(key="shop-empty", lang=lang | default(value='sk')) }}
{% endif %}
{% endblock content %}