{# Helps with silo structure #} {% if category.children | length %}
{{ 'category.list-subcategories' | _ }}
    {% for child in category.children %}
  • {{ child.name }}{{ not loop.last ? ',' : null }}
  • {% endfor %}
{% endif %}