From 168b8c8b563f9710391c2e3226e668bff3e05428 Mon Sep 17 00:00:00 2001 From: Haydn Greatnews Date: Thu, 1 Aug 2024 10:26:15 +1200 Subject: [PATCH] Switch blog page listing to show 12-per-page The blog page can present as 1-,2-,3- or 4- across so 12 factors much better, and we don't end up with a partial row --- cdhweb/blog/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdhweb/blog/models.py b/cdhweb/blog/models.py index 0d9f8d81..2d40a00f 100644 --- a/cdhweb/blog/models.py +++ b/cdhweb/blog/models.py @@ -233,7 +233,7 @@ class BlogLinkPageArchived(LinkPage): class BlogLandingPage(StandardHeroMixinNoImage, RoutablePageMixin, Page): """Container page that defines where Event pages can be created.""" - page_size = 15 + page_size = 12 template_name = "blog/blog_landing_page.html" content_panels = StandardHeroMixinNoImage.content_panels