blob: 74f0fe633673f93db5292fbe63759bb27c176029 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<hr class="new1">
{{ 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 }}
|