From e03632d4b53ba945341f6f4829f87a12fdda1872 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 13 Apr 2025 23:04:58 +0300 Subject: [PATCH] config.toml: update pagination To fix deprecation: ERROR deprecated: site config key paginate was deprecated in Hugo v0.128.0 and subsequently removed. Use pagination.pagerSize instead. --- config.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config.toml b/config.toml index 86e47dad..c69b47e2 100644 --- a/config.toml +++ b/config.toml @@ -5,8 +5,6 @@ languageCode = "en-us" title = "Picturing Jordan" theme = "hugo-theme-bootstrap4-blog" enableRobotsTXT = true -# number of posts to show on home/category/tag pages (Default: 10) -paginate = 3 copyright = "Except where otherwise noted, content on this site is licensed under a [Creative Commons Attribution 4.0 International license](https://creativecommons.org/licenses/by-sa/4.0/)." enableGitInfo = true @@ -19,6 +17,10 @@ enableGitInfo = true # Default JPEG quality setting. Default is 75. #quality = 82 +[pagination] + # number of posts to show on home/category/tag pages (Default: 10) + pagerSize = 3 + [permalinks] posts = "/:year/:month/:slug/" page = "/:slug/"