{{ column_left }}
{% if column_left and column_right %}
{% set class = 'col-xs-12 col-sm-4 col-md-6 col-lg-6' %}
{% elseif column_left or column_right %}
{% set class = 'col-sm-8 col-lg-10 col-md-9 col-xs-12' %}
{% else %}
{% set class = 'col-xs-12' %}
{% endif %}
{{ content_top }}
{{ heading_title }}
{% for category_1 in categories %}
- {{ category_1.name }}
{% if category_1.children %}
{% for category_2 in category_1.children %}
- {{ category_2.name }}
{% if category_2.children %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{{ column_right }}