{% for column in columns %}
{# column's top slide #}
{{column.title}}
{% if column.content %}{{ column.content|safe }}{% endif %} {# Main column shows links to other columns #} {% if loop.first %}
{% for other in columns %} {% if not loop.first %}
{{other.title}}
{% endif %} {% endfor %}
{% endif %} {# if column has sub-slides, link to them #} {% if column.slides %}
{% for slide in column.slides %}
{{slide.title}}
{% endfor %}
{% endif %}
{# show all column's sub-slides #} {% for slide in column.slides %}
{{slide.title}}
{% if slide.content %}{{ slide.content|safe }}{% endif %}
{% endfor %}
{% endfor %}