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