{# partials/topbar.html — top navigation bar matching reference #} {% set _ui = ui_config | default({}) %} {# Left zone: collapse toggle, logo #} {{ icon("bars-3", size="18px") }} {% if admin_config.logo_url %} {% else %} {{ icon("shield-check", size="24px") }} {{ admin_config.title | default("Admin") }} {% endif %} {# Center zone: search bar #} {{ icon("magnifying-glass", size="16px") }} Search anything... ⌘K {# Right zone: environment, notifications, dark toggle, user #} {% if _ui.environment_label | default('') %} {{ _ui.environment_label }} {% endif %} {# Dark mode toggle #} {{ icon("moon", size="18px") }} {{ icon("sun", size="18px") }} {# Notifications #} {{ icon("bell", size="18px") }} {# User avatar dropdown #} {{ current_user.full_name[0] | upper if current_user and current_user.full_name else "A" }} {{ current_user.full_name | default("Admin") }} {{ "Superuser" if current_user and current_user.is_superuser else "Admin" }} {{ icon("chevron-down", size="14px") }} {{ current_user.full_name | default("Admin") }} {{ current_user.email | default("") }} Profile Sign out