From c88b19469c8b5060508cf8a3c874d02a23057235 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Wed, 11 Mar 2026 08:51:43 +0100 Subject: [PATCH] fix: replace broken Nunjucks slice(1) with correct checkin loop Nunjucks slice(n) groups items into n buckets (not array.slice(n)). This caused checkin to be an array instead of an object, making all fields render empty. Now iterates all checkins directly. Co-Authored-By: Claude Sonnet 4.6 --- been.njk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/been.njk b/been.njk index 94615fc..eeeaf4f 100644 --- a/been.njk +++ b/been.njk @@ -14,9 +14,9 @@ withSidebar: true

- {% if checkins.length > 1 %} + {% if checkins.length %}
- {% for checkin in checkins | slice(1) %} + {% for checkin in checkins %}