From a7f334dc141005ddd950c4d6f50d90e4c63d2865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 19 Apr 2026 16:25:50 +0200 Subject: [PATCH] feat: show latest 4 posts on author page Co-Authored-By: Claude Sonnet 4.6 --- layouts/authors/single.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/authors/single.html b/layouts/authors/single.html index 2805308..b9588fd 100644 --- a/layouts/authors/single.html +++ b/layouts/authors/single.html @@ -82,7 +82,7 @@
- {{- range $posts.ByDate.Reverse -}} + {{- range first 4 ($posts.ByDate.Reverse) -}} {{- partial "post-card.html" . -}} {{- end -}}