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