Been working with SEO for almost a decade now, and while we were building paginators I seemed to remember Google having specific guidelines for paginators in order to maintain distinction between page, page/2/, page/3/ and not count it as duplicate content.
In the <head> section of the first page (http://www.example.com/article-part1.html), add a link tag pointing to the next page in the sequence, like this: <link rel="next" href="http://www.example.com/article-part2.html">
Some testing on this made us conclude this entails a second paginator.
Another alternative is rel="canonical". The problem is .Permalink, .URL etc points to the “first page”, skipping /2/
Haha, fan det är inte lätt att vara svensk! (och jag har ändå jobbat i Norge)
The problem isn’t the pager. The goal is to either:
create a second pager in <head> that generates something along the lines of:
<head>
...
{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }}
{{ if .Paginator.HasPrev }}
<link rel="prev" href="{{.Paginator.Prev.URL}}" />
{{ end }}
{{ if .Paginator.HasNext }}
<link rel="next" href="{{.Paginator.Next.URL}}" />
{{ end }}
{{ end }}
</head>