aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
blob: cf36155795c809325b370a32b40a77684d47148f (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 }}