summaryrefslogtreecommitdiffstats
path: root/themes/problematic/layouts/partials/posts.html
blob: e31bf6c1d2ba60022b3fd82092659dfab15ce92b (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 site.RegularPages ".Params.categories" "intersect" (slice ($key |title)) }}
  <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
  {{ end }}

 </ul>

{{ end }}