aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
blob: 7a26339581ad9ba5f3b5dc878cf026a6300f12d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
    <h1>{{ .Title | title }}</h1>
    {{ if .Content }}
        <p>{{ .Content }}</p>
    {{ end }}
    <section>
        {{ range sort .Pages "Date" "desc" }}
        <div>{{ .Render "summary" }}</div>
        {{ end }}
    </section>
{{ end }}