How to paginate after X posts

I’m trying to create a pagination of my posts ignoring the latest 3. It’s possible?

My code is:

{{ range (.Paginator 6).Pages }}
{{ .Title }}
{{ end }}

Hint: Save the first 3 pages to a variable. Save all the relevant pages to a another variable. Diff those two variables. Then paginate the result.

1 Like