{%- for page in section.pages %}
{%- if page.extra.section == 0 %}
{{ page.title }}
{%- endif %}
{%- endfor %}
{%- for page_section, pages in section.pages | group_by(attribute="extra.section") %}
{% set int_section = page_section | int %}
{%- if int_section > 0 %}
{{ section.extra.sections | nth(n=int_section - 1) }}
{%- for page in pages %}
{{ page.title }}
{%- endfor %}
{%- endif %}
{%- endfor %}