diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-25 16:38:26 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-25 16:38:26 +0100 |
commit | 1805cef767e8eac946e08efcb5a4c47811f01369 (patch) | |
tree | 57fcc001b130730edfe790eaff47f380c6f56561 /layouts/stream | |
parent | 342f179e97e4aa42dc971f5a714a92e581741898 (diff) |
added stream page and email address
Diffstat (limited to 'layouts/stream')
-rw-r--r-- | layouts/stream/list.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/stream/list.html b/layouts/stream/list.html new file mode 100644 index 0000000..940c1c9 --- /dev/null +++ b/layouts/stream/list.html @@ -0,0 +1,12 @@ +{{ define "main" }} +<h2>{{ with .Site.GetPage "section" "stream" }}{{ .Title }}{{ end }}</h2> + +{{ .Content }} + +{{ range where site.RegularPages "Section" "stream" }} + <h3>{{ .Date.Format "Monday, 2 January 2006" }}</h3> + {{ .Content }} + <hr class="new1"> +{{ end }} + +{{ end }} |