From 991ec4327883926fec6ccc70cca6d9dc3f3366db Mon Sep 17 00:00:00 2001 From: Sanne de Vries Date: Mon, 15 Apr 2024 19:53:37 +0200 Subject: [PATCH] Changed limit for posts on the home page from 12 to 24 --- partials/components/post-list.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/partials/components/post-list.hbs b/partials/components/post-list.hbs index e11fb522..0892253e 100644 --- a/partials/components/post-list.hbs +++ b/partials/components/post-list.hbs @@ -47,7 +47,7 @@ {{/get}} {{/match}} {{else}} - {{#get "posts" include="tags,authors" limit="12"}} + {{#get "posts" include="tags,authors" limit="24"}} {{#foreach posts}} {{> "post-card" lazyLoad=true}} {{/foreach}}