{% set _show_sidebar = show_sidebar if show_sidebar is defined else (user is defined and user) %} {% if _show_sidebar %} {# Mobile backdrop #} {# ── Sidebar ── #} {% set _path = request.url.path %} {% set _is_project = _path.startswith('/projects/') %} {% set _is_project_detail = _is_project and '/opportunities/' not in _path %} {% set _is_project_opportunity = _is_project and '/opportunities/' in _path %} {% set _is_admin = user is defined and user and (user.roles | selectattr('name', 'equalto', 'admin') | list | length > 0) %} {% endif %} {# ── Content wrapper ── #}
{% if _show_sidebar %} {# Mobile top bar #}
Governor
{% endif %} {# Main content #}
{% if flash %}
{{ flash.level }} {{ flash.message }}
{% if flash.action_url %} {{ flash.action_label or 'Open' }} {% endif %}
{% endif %}
{% block content %}{% endblock %}