summaryrefslogtreecommitdiff
path: root/themes/stingray/layouts/_default/list.html
blob: e24c7bc3b14fe63b5d12b22a4255704768deea18 (plain)
1
2
3
4
5
6
7
8
9
10
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ range .Pages.ByPublishDate.Reverse }}
<p>
    <h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
    {{ partial "metadata.html" . }}
    <p>{{ .Summary }}</p>
</p>
{{ end }}
{{ end }}