I am trying to add the next page URL within the of the page. Since it depends on Pagination, I have use the following code to generate what is needed to go into the . However, this code works at the bottom of the page where Pagination is defined but when I move to the it does not work.
Can someone point me in the right direction please?
{{ $pag := $.Paginator }}
{{ if gt $pag.TotalPages 1 }}
{{ $.Scratch.Set "dot_rendered" false }}
{{ if $pag.HasNext }}
<link href="{{ $pag.Next.URL | absURL }}" rel="next" />
{{ end }}
{{ end }}
Thanks