{{ column_left }}
{% if column_left and column_right %}
{% set class = 'col-sm-6' %}
{% elseif column_left or column_right %}
{% set class = 'col-sm-9' %}
{% else %}
{% set class = 'col-sm-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 %}
{{ content_bottom }}
{{ column_right }}