summaryrefslogtreecommitdiff
path: root/layouts/posts/list.html
blob: 21f52c1023fa433e10cee02fb8ad455c37dfee65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{- define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{- range .Sections }}
	<h2>{{ .Title }}</h2>
	<ul>
		{{- range .Pages }}
			<li>
				<a href="{{ .Permalink }}">{{ .Title }}</a>
				<small>
					{{ .Date | dateFormat "2006-01-02" }}
					{{- range .Params.tags }}
						<a href="/tags/{{ . | lower }}">#{{ . }}</a>
					{{- end }}
				</small>
			</li>
		{{- end }}
	</ul>
{{- end }}
{{- end }}