summaryrefslogtreecommitdiff
path: root/layouts/project-release/list.html
blob: b52dd0e97de91debbf84f7ce6c47fcba31b266fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{- define "main" }}
<h1>{{ .Parent.Title }} Releases</h1>
{{ .Content }}
<ul>
	{{- range .Pages }}
		<li>
			<a href="{{ .Permalink }}">{{ .Title }}</a>
			({{ .Date | dateFormat "2006-01-02" }})
		</li>
	{{- end }}
</ul>
<p>Follow the <a href="{{ .Permalink }}index.xml">RSS feed</a> to stay up to date with
the latest {{ .Parent.Title }} releases.</p>
{{- end }}