{{- define "main" }}

{{ .Title }}

{{- partial "newsletter_sub_form.html"}} {{/* get pages from the current page's section */}} {{- $sections := slice .Section }} {{- $pages := where (where site.RegularPages "Section" "in" $sections) "Params.hidden" "!=" true }} {{/* TODO statistics */}}
{{- range $pages }}
{{- if not .Date.IsZero -}} {{ .Date | time.Format (default "January 2, 2006" site.Params.DateFormat) }} {{- end }}
{{ with .Param "issueno" }}#{{ . }}{{ end }}
{{- end }}
{{ end }}