Initially {{range .Pages}}
works lovely and will iterate over each page available in the taxonomy term. But once pagination is added it breaks saying cannot iterate over nil. Any ideas? I’m sure the coffee has yet to kick in this morning.
I’ve tried the following bit from here: https://discourse.gohugo.io/t/pagination-inside-terms-page-issue/29431
As well as :
{{len .Pages}}
{{ $pager := .Paginate .Pages 2 }}
{{$pager}}
len turns up as 9
while $pager
returns nil.
Cheers