Skip to content

Commit

Permalink
Update README. Fix deprecation warning:
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jyap808 committed Dec 5, 2024
1 parent 51574b4 commit 18055f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 18055f2

Please sign in to comment.