{% extends 'layout.html.twig' %} {% block body %}
{% set cat = topics[categoryKey] ?? null %} {% if cat %} {% for subKey, sub in cat.subcategories %}

{{ sub.name }}

{% for tag in sub.tags %} {{ tag }} {% endfor %}
{{ sub.count|default(0) }}
{% endfor %} {% else %}
No subcategories available for this topic.
{% endif %}
{% endblock %} {% block aside %} {% endblock %}