summaryrefslogtreecommitdiffstats
path: root/themes/problematic/layouts/partials/posts.html
blob: 191f44919751367d9cb7a4158b609d90d4d76e3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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 }}