diff --git a/hugo.toml b/hugo.toml index 6451c7bf6..2c62cea4a 100644 --- a/hugo.toml +++ b/hugo.toml @@ -331,8 +331,6 @@ enableEmoji = true enablePWA = false # FixIt 0.2.14 | NEW whether to add external Icon for external links automatically externalIcon = false - # FixIt 0.3.0 | NEW whether to reverse the order of the navigation menu - navigationReverse = false # FixIt 0.3.0 | NEW whether to add site title to the title of every page # remember to set up your site title in `hugo.toml` (e.g. title = "title") withSiteTitle = true @@ -444,6 +442,13 @@ enableEmoji = true sticky = false showHome = false + # FixIt 0.3.10 | NEW Post navigation config + [params.navigation] + # whether to show the post navigation in section pages scope + inSection = false + # whether to reverse the next/previous post navigation order + reverse = false + # Footer config [params.footer] enable = true diff --git a/layouts/partials/init/index.html b/layouts/partials/init/index.html index 67c688460..ea2a9a496 100644 --- a/layouts/partials/init/index.html +++ b/layouts/partials/init/index.html @@ -1,4 +1,4 @@ -{{- .Scratch.Set "version" "v0.3.10-24873c5e" -}} +{{- .Scratch.Set "version" "v0.3.10-c936e541" -}} {{- .Scratch.Set "this" dict -}} {{- partial "init/detection-env.html" . -}} diff --git a/layouts/partials/single/footer.html b/layouts/partials/single/footer.html index 0bb42b37a..f39489ece 100644 --- a/layouts/partials/single/footer.html +++ b/layouts/partials/single/footer.html @@ -98,11 +98,18 @@ + {{- $navigation := .Site.Params.navigation -}}