summaryrefslogtreecommitdiff
path: root/layouts/project-release/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/project-release/list.html')
-rw-r--r--layouts/project-release/list.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/project-release/list.html b/layouts/project-release/list.html
new file mode 100644
index 0000000..b52dd0e
--- /dev/null
+++ b/layouts/project-release/list.html
@@ -0,0 +1,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 }}