From 21b696ad56494dbac4f7dd81522f9b6817dd34ee Mon Sep 17 00:00:00 2001
From: Dominik George <dominik.george@teckids.org>
Date: Sat, 18 May 2024 16:11:45 +0200
Subject: [PATCH] Fix number of blog posts on front page

---
 templates/frontpage/blog.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/frontpage/blog.html b/templates/frontpage/blog.html
index 356750da..3bd6fe57 100644
--- a/templates/frontpage/blog.html
+++ b/templates/frontpage/blog.html
@@ -3,7 +3,7 @@
   <div class="container">
     <h2 class="title is-2">{{ title | default(value="Aus dem Teckids-Blog") }}</h2>
     <div class="columns is-multiline is-same-height mt-4">
-      {% for post in blog_section.pages | slice(end=4) %}
+      {% for post in blog_section.pages | slice(end=6) %}
         <div class="column is-one-third">
           {% include "blog/card.html" %}
         </div>
-- 
GitLab