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