From 5e0018688afa462834a3cfd0c093c8a414c93d1b Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 16 Oct 2020 11:36:01 +0200 Subject: [PATCH] Limit number of blog posts on frontpage to 4 (#15266) --- source/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/index.html b/source/index.html index feafab27902..1925323509c 100644 --- a/source/index.html +++ b/source/index.html @@ -96,7 +96,7 @@ description:

Recent Blog Posts

- {% for post in site.posts limit: 7 %} + {% for post in site.posts limit: 4 %}
  • {{ post.title }} {{ post.date_formatted }}