{# Site top bar — app-surface pages only (home, search, portal). #} {% from "chirpui/navbar.html" import navbar, navbar_link %} {% from "partials/docs_nav_icons.html" import docs_icon %} {% from "partials/shell_nav_mega.html" import shell_mega_overview, shell_mega_item, shell_nav_dropdown %} {% let active_url = node?.url ?? '' %} {% let docs_nav = site_nav.documentation %} {% let develop_nav = site_nav.develop %}
{% call navbar( cls="chirpui-navbar chirp-theme-shell__nav chirpui-navbar--sticky fura-shell-nav", brand_url="/", use_slots=true, brand_slot=true, current_path=active_url, aria_label="Primary" ) %} {% slot brand %} {% end %} {% slot %}
{% call shell_nav_dropdown(docs_nav.menu_label, current_path=active_url, match="prefix", href=docs_nav.dropdown_href) %}
{{ shell_mega_overview(docs_nav.overview_href, docs_nav.overview_kicker, docs_nav.overview_title, docs_nav.overview_blurb) }}
{% for link in docs_nav.links %} {{ shell_mega_item(link.href, link.label, link.blurb, link.icon) }} {% end %}
{% end %} {% call shell_nav_dropdown(develop_nav.menu_label, current_path=active_url, match="prefix", href=develop_nav.dropdown_href) %}
{{ shell_mega_overview(develop_nav.overview_href, develop_nav.overview_kicker, develop_nav.overview_title, develop_nav.overview_blurb) }}
{% for link in develop_nav.links %} {{ shell_mega_item(link.href, link.label, link.blurb, link.icon) }} {% end %}
{% end %}
{% end %} {% slot end %}
{% let theme_menu_id = "theme-menu-desktop" %} {% include "partials/theme_menu.html" %}
{% end %} {% end %}