{% extends "base.html" %} {% block content %} {% for section in sections %}

{{ section.id }}. {{ section.title }}

{% if section.blocks and section.blocks|length %} {% for b in section.blocks %} {% if b.type == 'figure' %} {% set fig = b %} {% include "components/figure.html" %} {% elif b.type == 'table' %} {% set table = b.table %} {% include "components/table.html" %} {% elif b.type == 'text' %} {% set text = b.text %} {% include "components/text.html" %} {% endif %} {% endfor %} {% endif %} {% if section.subsections and section.subsections|length %} {% for sub in section.subsections %}

{{ sub.id }}. {{ sub.title }}

{% if sub.blocks and sub.blocks|length %} {% for b in sub.blocks %} {% if b.type == 'figure' %} {% set fig = b %} {% include "components/figure.html" %} {% elif b.type == 'table' %} {% set table = b.table %} {% include "components/table.html" %} {% elif b.type == 'text' %} {% set text = b.text %} {% include "components/text.html" %} {% endif %} {% endfor %} {% else %}

No items found for {{ sub.id }}.

{% endif %}
{% endfor %} {% endif %}
{% endfor %} {% endblock %}