blob: b1c8c82e546547f9f1cac1bda6b26f0a20f058b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<h2>Blog Posts</h2>
{{ range $key, $value := .Site.Taxonomies.categories }}
<h3>{{ $key | title }}</h3>
<ul>
{{ range where (where site.RegularPages "Section" "blog") ".Params.categories" "intersect" (slice ($key |title)) }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a> ({{ .Date.Format "2 Jan 06" }})</li>
{{ end }}
</ul>
{{ end }}
|