summaryrefslogtreecommitdiffstats
path: root/layouts/stream
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-07-25 16:38:26 +0100
committerMatthew Lemon <matt@matthewlemon.com>2022-07-25 16:38:26 +0100
commit1805cef767e8eac946e08efcb5a4c47811f01369 (patch)
tree57fcc001b130730edfe790eaff47f380c6f56561 /layouts/stream
parent342f179e97e4aa42dc971f5a714a92e581741898 (diff)
added stream page and email address
Diffstat (limited to 'layouts/stream')
-rw-r--r--layouts/stream/list.html12
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 }}