From ab674ada31f09edb1a4333e520d482e13e0c90da Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 24 Feb 2026 11:49:04 +0000 Subject: [PATCH] Fix nav links: map all app slugs to correct app URLs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously only 'cart' was mapped — slugs like 'federation', 'market', 'events', 'account' incorrectly linked to blog_url(). Now all app slugs resolve to their proper cross-app URLs. Co-Authored-By: Claude Opus 4.6 --- browser/templates/_types/root/_nav.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/browser/templates/_types/root/_nav.html b/browser/templates/_types/root/_nav.html index 666285c..c220d05 100644 --- a/browser/templates/_types/root/_nav.html +++ b/browser/templates/_types/root/_nav.html @@ -1,4 +1,10 @@ -{% set _app_slugs = {'cart': cart_url('/')} %} +{% set _app_slugs = { + 'cart': cart_url('/'), + 'market': market_url('/'), + 'events': events_url('/'), + 'federation': federation_url('/'), + 'account': account_url('/'), +} %} {% set _first_seg = request.path.strip('/').split('/')[0] %}