summaryrefslogtreecommitdiff
path: root/layouts/_default/index.html
blob: 0985c5e2928a442ba2817e9a0a9d87620ef64d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
<article class="list taxonomy">
  <ul>
    {{ range  (where site.RegularPages "Type" "!=" "special") }}
      {{ partial "partials/article_list_item.html" . }}
    {{ end }}
  </ul>
</article>
{{ end }}