{% include "partials/toc.html" %}
{% endif %}
{# ── Global Sections ── #}
{% for gs in general_sections %}
{% if gs.blocks %}
{% for block in gs.blocks %}
{% include "partials/blocks/render_block.html" %}
{% endfor %}
{% else %}
{{ gs.rendered_html }}
{% endif %}
{% endfor %}
{# ── Summary of Universities ── #}
{% if summary_block %}
{% if summary_block.blocks %}
{% for block in summary_block.blocks %}
{% include "partials/blocks/render_block.html" %}
{% endfor %}
{% else %}
{{ summary_block.rendered_html }}
{% endif %}
{% endif %}
{# ── University Sections ── #}
{% if university_blocks %}
{% for block in university_blocks %}
{% include "partials/blocks/render_block.html" %}
{% endfor %}
{% elif universities %}
{% for uni in universities %}
{% include "partials/university.html" %}
{% endfor %}
{% endif %}