From 6119d0657c11701d09d66ee0ad2860f0283228b1 Mon Sep 17 00:00:00 2001 From: Dinesh Natesan Date: Sun, 24 Dec 2023 18:46:14 -0800 Subject: [PATCH] added ability to switch off pagination on the blog page (#1909) --- blog/index.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/blog/index.html b/blog/index.html index e608968f7d87..b4b064c7cade 100644 --- a/blog/index.html +++ b/blog/index.html @@ -95,7 +95,14 @@

{{ post.title }}

{% endif %} - {% include pagination.html %} + {%- if page.pagination.enabled -%} + {%- include pagination.html -%} + {%- endif -%}