blob: a45ef0b459507a0f1513a863f557abb34b09d9c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{ define "main" }}
{{ range where site.RegularPages "Section" "stream" }}
<h3 id="{{ .Date.Format "Monday, 2 January 2006"| urlize}}">{{ .Date.Format "Monday, 2 January 2006" }}</h3>
{{ .Content }}
{{ if .Params.tags }}
<div style="background-color: rgb(240, 240, 240);">
This post is tagged with:
{{ range .Params.tags }}
<a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
{{ end }}
{{ else }}
<div style="background-color: rgb(240, 240, 240); margin-top: 20px;">
This post is untagged.
</div>
{{ end }}
</div>
<hr class="new1">
{{ end }}
{{ end }}
|