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