{{ define "main" }}
<div id="content" class="bg-near-white pb2">

    <!-- Note that .Data.Pages is the equivalent of .Site.Pages on the homepage template. -->
    {{ $paginator := .Paginate (where .Data.Pages "Section" "post") }}
    {{ range $paginator.Pages }}
        {{ .Render "summary" }}
    {{ end }}
    {{ partial "pagination.html" . }}
</div>
{{ end }}