summaryrefslogtreecommitdiff
path: root/themes/stingray/layouts/_default/list.html
blob: 54512e17ad4dc35cb3514fe7df0c6d17e31327f5 (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>{{ .Description }}</p>
</p>
{{ end }}
{{ end }}