summaryrefslogtreecommitdiff
path: root/layouts/posts/list.html
blob: 1bacf24698537027fc40379bea5bfb4d855d0281 (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 }}