aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/index.html
blob: 64edb684c1d52140777b73317b28408828a67d9e (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
<div id="content" class="mw7 center">

    <!-- 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 }}