{% if user is defined and user %} {# ── Authenticated nav ─────────────────────────────────────── #}
{# Top bar: breadcrumb + user actions #}
forage
{% if current_org is defined and current_org %}
/
{% if orgs is defined and orgs | length > 1 %}
{{ current_org }}
{% for org in orgs %}
{{ org.name }}
{% endfor %}
{% else %}
{{ current_org }}
{% endif %} {% if project_name is defined and project_name %}
/
{{ project_name }}
{% endif %} {% endif %}
{{ user.username }}
Sign out
{# Tab navigation #}
{% if current_org is defined and current_org %} {# Org-scoped tabs #}
Overview
Projects
Releases
Members
Destinations
Usage
Tokens
Settings
{% else %} {# Global tabs (dashboard, settings) #}
Overview
Tokens
Settings
{% endif %}
{% else %} {# ── Marketing nav ─────────────────────────────────────────── #}
forage
Pricing
Components
Sign in
{% endif %}
{% block content %}{% endblock %}