{% set current_group = "" %}
{% for doc_page in docs_section.pages %}
{% if not doc_page.extra.hide_from_nav %}
{% set is_current = current_page and doc_page.permalink == current_page.permalink %}
{% set page_group = doc_page.extra.group | default(value="") %}
{# Show group label when group changes #}
{% if page_group != current_group and page_group != "" %}
{# Show page TOC for current page (h1s with nested h2s, or standalone h2s) #}
{% if is_current and current_page.toc %}
{% for h in current_page.toc %}
{% if h.level == 1 %}