diff options
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 }} |