{# Mega-menu panel items for the app-surface site nav. #} {% from "partials/docs_nav_icons.html" import docs_icon %} {% def shell_mega_overview(href: str, eyebrow: str, title: str, description: str) %} {{ eyebrow }} {{ title }}

{{ description }}

{% end %} {% def shell_mega_item(href: str, title: str, description: str, icon: str = "book-open") %} {{ title }} {{ description }} {% end %} {% def shell_nav_dropdown(label: str, current_path: str = "", match: str = "", href: str = "", active: bool = false) %} {% set _cp = current_path if match else "" %} {% set _active = active if not match else ((_cp == href) if match == "exact" else (_cp == href or _cp.startswith(href ~ "/")) if match == "prefix" else active) %}
{% slot %}
{% end %}