summaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
blob: 91d5526f50e250c018cf09c9ba1c0f35d2ecb72e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
<article class="list taxonomy">
  <h2>
    {{ replace .Title "-" " " }} archives
  </h2>
  <h3>Articles</h3>
  <ul>
    {{ range .Data.Pages }}
      {{ partial "partials/article_list_item.html" . }}
    {{ end }}
  </ul>
</article>
{{ end }}