Help with page.earlier/page.later [edit:bug]

[update start]
Seems to be a bug in Zola 0.16.1, it works fine (as expected) if I go back to 0.15.3.
[update end]

Hello,

I’m trying to have previous/next post when I open a post on my blog.
I’m using page.earlier/page.later and I’m just confused because it doesn’t render the navigation in posts.
Note: pagination works on blog section
Here is my content folder structure and the index.md content

content
-blog
–2022
—index.md (sort_by = “date”, transparent = true)
–index.md (sort_by = “date”, transparent = true)
-pages
–index.md (render = false, transparent = false)
index.md (sort_by = “date”, transparent = true, paginate_by = 10)

I tried many combinations but they dont work

It’s a change in 0.16 where this has been removed. See https://github.com/getzola/zola/blob/master/CHANGELOG.md#breaking the 3rd bullet point
In short page.earlier == page.lower, page.later == page.higher

1 Like

Thanks Keats!
Sorry for this