blob: 940c1c91ab26ad27e3d33855adf6450e007b84e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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 }}
|