{# Per-user theme override. For ``default`` we keep the global STYLE_NAV_* config values so the public templates (login, license) and admin pages render exactly as before for users who haven't picked a theme. For any other theme the matching CSS file (shipped under ``application/themes/.css`` or dropped into ``plugins/themes/.css``) is loaded via the ``themes`` blueprint. Each theme file is responsible for setting ``--nav-bg`` / ``--nav-link`` itself. ``user_theme`` is fed by ``_inject_user_theme`` in ``application/__init__.py`` and has already been validated against the registry, so an unknown slug never reaches this template. #} {% set _theme = user_theme | default('default') %} {% if _theme == 'default' %} {% else %} {% endif %}