From 139cf5fa2feed995501f141b81ee5c0092be398c Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 10 Feb 2026 09:58:05 +0000 Subject: [PATCH] fix: remove extra endcall in calendar header template The premature endcall closed menu_row before desktop_nav, causing a Jinja nesting error. Co-Authored-By: Claude Opus 4.6 --- templates/_types/calendar/header/_header.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/templates/_types/calendar/header/_header.html b/templates/_types/calendar/header/_header.html index 5d03bae..a431382 100644 --- a/templates/_types/calendar/header/_header.html +++ b/templates/_types/calendar/header/_header.html @@ -11,8 +11,7 @@ {% from '_types/calendar/_description.html' import description %} {{description(calendar)}} - {% endcall %} - {% call links.desktop_nav() %} + {% call links.desktop_nav() %} {% include '_types/calendar/_nav.html' %} {% endcall %} {% endcall %}