From 16352b915293976bdb34984f98d18a57e0a076bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 14 Apr 2026 16:26:10 +0200 Subject: [PATCH] feat: limit homepage latest posts to 4, fix total post count in CTA Co-Authored-By: Claude Sonnet 4.6 --- layouts/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/layouts/index.html b/layouts/index.html index 6af2f0f..bdff676 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -117,14 +117,14 @@
- {{- range first 8 $latest -}} + {{- range first 4 $latest -}} {{- partial "post-card.html" . -}} {{- end -}}
- {{- if gt (len $latest) 8 -}} + {{- if gt (len $latest) 4 -}} {{- end -}}