From 18055f23673c0f51dcb047d7020179bc35e48af0 Mon Sep 17 00:00:00 2001 From: Julian Yap Date: Wed, 4 Dec 2024 17:43:43 -0800 Subject: [PATCH] Update README. Fix deprecation warning: WARN deprecated: site config key paginate was deprecated in Hugo v0.128.0 and will be removed in a future release. Use pagination.pagerSize instead. --- README.md | 5 +++++ config.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e23fedf..fc90f08 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,11 @@ New post: hugo new posts/$(date "+%F-%s").md ``` +Initialize, fetch and checkout nested submodules (themes): +``` +git submodule update --init --recursive +``` + Update submodules (themes): ``` git submodule update --remote --recursive diff --git a/config.toml b/config.toml index aa675d0..b66cb5a 100644 --- a/config.toml +++ b/config.toml @@ -3,7 +3,7 @@ languageCode = 'en-us' title = 'Wilderness Downtown' theme = 'cactus' copyright = "Julian Yap" -paginate=5 # articles per page +pagination.pagerSize=5 # articles per page [params] useCDN=false # don't use CDNs for fonts and icons, instead serve them locally.