Front Matter
Executive Summary
Report Body
{% for section in sections %}
{% set section_num = loop.index %}
{{ section_num }}. {{ section.title }}
{% if section.subsections %}
{% for sub in section.subsections %}
{{ section_num }}.{{ loop.index }} {{ sub.title }}
{% endfor %}
{% endif %}
{% endfor %}
{% if appendices %}
Appendices
{% for appendix in appendices %}
{{ appendix.title }}
{% endfor %}
{% endif %}
{% if references %}
References
References
{% endif %}