🐛 fix bug with next-prev-navigator when no menus

Signed-off-by: jbleduigou <jb.leduigou@gmail.com>
This commit is contained in:
jbleduigou 2021-06-17 22:08:09 +02:00
parent 4aca409662
commit 6ad8ab8479

View file

@ -3,7 +3,11 @@
{{ $nextPage := "" }}
<!-- List all the pages. It uses the sidebar menu to discover the page order. -->
{{ $pages := partial "helpers/get-pages.html" site.Menus.sidebar }}
{{ $pages := slice }}
{{ if isset site "Menus" }}
{{ $pages := partial "helpers/get-pages.html" site.Menus.sidebar }}
{{ end }}
<!-- Now, find the current page index in the pages list. Then, find previous page and next page. -->
{{ $idx := 0 }}