{{ $articlesInSection := slice }}
{{ range .Site.RegularPages }}
{{ if $.IsAncestor . }}
{{ $articlesInSection = $articlesInSection | append . }}
{{ end }}
{{ end }}
{{ $paginator := .Paginate $articlesInSection }}
{{ range $paginator.Pages }}
{{ if (eq .FirstSection.Section "posts")}}
{{- partial "pagination.html" $paginator -}}
{{ .Render "summary" }}
{{ end }}
{{ end }}