{# Main app header: Aird + profile + Browse + feature nav + theme selector.
Optional overrides: nav_title, nav_search_path, show_admin_link (BaseHandler defaults).
Layout: place this include inside the same outer wrapper as page content, e.g.
Browse
{% if is_feature_enabled('super_search', True) %}
Search
{% end %}
{% if is_feature_enabled('file_share', True) %}
Share
{% end %}
{% if is_feature_enabled('p2p_transfer', True) %}
P2P
{% end %}
{% if show_admin_link %}
{% if current_user and current_user.get("role") == "admin" %}
Admin
{% end %}
{% end %}
{% if current_user %}
{% end %}
{% if current_user %}
Logout
{% else %}
Login
{% end %}