{% load wagtailcore_tags wagtailimages_tags %}
{% if enap_dynav %}
Pular para o conteúdo principal
{% if enap_dynav_mode == 'global' %}
{# ── HOME: barra única (inalterada) ─────────────────────────── #}
{% with logo_block=enap_dynav.logo|first %}
{% if logo_block %}
{% image logo_block.value original as logo_img %}
{% endif %}
{% endwith %}
{% for block in enap_dynav.sorted_nav_items %}
{% if block.block_type == 'nav_item' %}
{% with label=block.value.custom_label|default:block.value.page.title %}
{% elif block.block_type == 'mega_only_nav_item' %}
{% with label=block.value.custom_label|default:block.value.page.title %}
{{ label }}›
{% endwith %}
{% endif %}
{% endfor %}
{# L2/L3/L4 — painel do mega menu para cada item #}
{% for block in enap_dynav.sorted_nav_items %}
{% if block.block_type == 'nav_item' %}
{% with section=block.value.page label=block.value.custom_label|default:block.value.page.title %}
{{ label }}
{% include "enap_designsystem/blocks/dynamic_nav/render_mega_section.html" with parent=section %}
{% for child in block.value.children %}
{% if child.page and child.show_children_depth %}
{% with child_pages=child.page.get_children.live %}
{% if child_pages %}
{% include "enap_designsystem/blocks/dynamic_nav/render_mega_section.html" with parent=child.page depth=child.show_children_depth %}