summaryrefslogblamecommitdiffstats
path: root/themes/problematic/layouts/partials/posts.html
blob: b1c8c82e546547f9f1cac1bda6b26f0a20f058b0 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                       

  
                                                                                                                     
                                                                                      





           
<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 }}