From ab69c744f455ce9952a23cc50c6bf55c804c5213 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 5 Oct 2016 15:49:31 +0300 Subject: [PATCH] config.toml: Update for pagination change Theme is using Hugo's native pagination, so we can rely on the site variable "Paginate" instead of managing our own. --- config.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config.toml b/config.toml index 8466075a..19f58f37 100644 --- a/config.toml +++ b/config.toml @@ -5,6 +5,8 @@ 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 [permalinks] post = "/:year/:month/:slug/" @@ -17,9 +19,6 @@ enableRobotsTXT = true # Description/subtitle for homepage (can be Markdown) description = "Sharing Jordan with the world — one picture at a time." - # How many posts to show on the homepage (Default: 5) - num_recent_posts = 3 - # Format dates with Go's time formatting date_format = "Mon Jan 02, 2006"