How do I set skip x at start of pagination?

I’m trying to create a section list template that shows the first x blog entries and then below a “Recent posts” with pagination. I’m trying to have the recent posts not include the posts that are already shown on the current page. Is that possible?

Currently the page is driven more or less with

{{ range first 2 .Pages }}

{{ end }}

{{ range (.Paginator 3).Pages}}

{{ end }}

1 Like