{{ heading_title }}
    {% for category in categories %} {% if category.children %}
  • {{ category.name }} {% for children in category.children|batch(category.children|length / category.column|round(1, 'ceil')) %}
      {% for child in children %} {% if child.childs %}
    • {{ child.name }} {% for childs_col in child.childs|batch(child.childs|length / child.column|round(1, 'ceil')) %}
        {% for childs_2 in childs_col %}
      • {{ childs_2.name }}
      • {% endfor %}
      {% endfor %}
    • {% else %}
    • {{ child.name }}
    • {% endif %} {% endfor %}
    {% endfor %}
  • {% else %}
  • {{ category.name }}
  • {% endif %} {% endfor %} {% if blog_enable %}
  • {{ text_blog }}
  • {% endif %}