aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
blob: 5d1370fa560d99a154b7053611883d4c6520a99d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
    <article>
        <section>{{- .Content -}}</section>
        <section>
            {{ range .Paginator.Pages }}
            <div>
                {{ .Render "summary" }}
            </div>
            {{ end }}
        </section>
    </article>
{{ end }}