diff options
author | RayHammer <evkondratyev@yandex.ru> | 2022-10-20 03:12:32 +0200 |
---|---|---|
committer | RayHammer <evkondratyev@yandex.ru> | 2022-10-20 03:12:32 +0200 |
commit | 3bfaf76d19b42d08f3a3c639c1bf3f9a90abfef3 (patch) | |
tree | 6552087163b4a365758d5f0abcbedb056c1a62cc /themes/stingray/layouts/_default/list.html | |
parent | af3521fd0e1a2a27ed6db08f453ff8354ba3b9e8 (diff) |
Initial commit
Diffstat (limited to 'themes/stingray/layouts/_default/list.html')
-rw-r--r-- | themes/stingray/layouts/_default/list.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/stingray/layouts/_default/list.html b/themes/stingray/layouts/_default/list.html new file mode 100644 index 0000000..2a2cd11 --- /dev/null +++ b/themes/stingray/layouts/_default/list.html @@ -0,0 +1,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 }}
\ No newline at end of file |