summaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
blob: ae897822386619ffd8091f3d8e769b5497f52225 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}

  <h2>
    {{ replace .Title "-" " " }} archives
  </h2>
  <h3>Articles</h3>
  {{ range .Data.Pages }}
    {{ partial "partials/article_list_item.html" . }}
  {{ end }}

{{ end }}