{% for section in sections %} {% set section_num = loop.index %} {% if not loop.first %}
{% endif %}
Section {{ section_num }}
{{ section_num }}. {{ section.title }}
{{ section.content }}
{% if section.subsections %} {% for sub in section.subsections %}
{{ section_num }}.{{ loop.index }} {{ sub.title }}
{{ sub.content }}
{% endfor %} {% endif %} {% endfor %}