From 847a7bc6d11cad01681236fe08d2e2bc8cf9e1d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 11 May 2026 16:24:21 +0200 Subject: [PATCH] feat: limit homepage gallery to 4 posts Co-Authored-By: Claude Sonnet 4.6 --- layouts/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/index.html b/layouts/index.html index 87cf1cf..0fa1335 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -130,12 +130,12 @@
- {{- range first 8 $latest -}} + {{- range first 4 $latest -}} {{- partial "post-card.html" . -}} {{- end -}}
- {{- if gt (len $latest) 8 -}} + {{- if gt (len $latest) 4 -}}