{{ heading_title }}
{% if image or description %}
{% if image %}
{% endif %}
{% if description %}
{{ description }}
{% endif %}
{% endif %} {% if categories %}
{{ text_refine }}
{% if categories|length <= 5 %}-
{% for category in categories %}
- {{ category.name }} {% endfor %}
{% set total = category.children|length %}
{% if total > 20 %}
{% set batch = (total / 4)|round(0, 'ceil') %}
{% else %}
{% set batch = 5 %}
{% endif %}
{% for category in categories|batch(batch) %}
{% endfor %}
-
{% for child in category %}
- {{ child.name }} {% endfor %}
{% endif %} {% endif %} {% if products %}
{% for product in products %}
{{ product }}
{% endfor %}
{{ pagination }}
{{ results }}
{{ text_no_results }}
{% endif %} {{ content_bottom }}