Hi
I am trying o include pagination on my tags template but cannot get it working.
So I have the tag {{ range .Data.Pages }} which is pulling in posts tagged with a particular tag. I am trying to combine {{ $paginator := .Paginate (where .Site.RegularPages “Type” “blog”) }} with that, but i might be barking up the wrong tree!
As I have pagination working in my list.html I was trying to get two parts of the code to work together
For example
{{ $paginator := .Paginate (where .Site.RegularPages “Type” “blog”) }}
{{ range .Paginator.Data.Pages }}
Hopefully that will make sense to someone! Thanks a bunch, having lots of fun with Hugo