{% load wagtailcore_tags wagtailimages_tags %} {# ── MODO GLOBAL (home) ──────────────────────────────────────────────── #} {% if nav_mode == 'global' %} {# Logo / link home #} ENAP {# Itens do menu global #} {% for item in value.nav_items %} {% with section=item.page label=item.custom_label|default:item.page.title %} {% if item.icon %}{{ item.icon }}{% endif %} {{ label }} expand_more {# Dropdown: filhas da seção #} {% include "enap_designsystem/blocks/dynamic_nav/render_children.html" with parent=section depth=block.value.show_children_depth %} {% endwith %} {% endfor %} {# ── MODO SECTION / SUBSECTION ──────────────────────────────────────── #} {% else %} {# Botão ENAP — abre o menu global como overlay #} ENAP expand_more {# Navegação local: filhas (section) ou irmãs (subsection) #} {% for pg in local_pages %} {{ pg.title }} {% endfor %} {# Overlay do menu global (disparado pelo botão ENAP) #} close {% for item in value.nav_items %} {% with section=item.page label=item.custom_label|default:item.page.title %} {% if item.icon %}{{ item.icon }}{% endif %} {{ label }} {% include "enap_designsystem/blocks/dynamic_nav/render_children.html" with parent=section depth=block.value.show_children_depth %} {% endwith %} {% endfor %} {% endif %}