aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/list.html
blob: d653b327beef4d39a4c40eaa73d4c8c796192776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "hero" }}
  {{ partial "hero.html" . }}
{{ end }}

{{ define "main" }}
  <div class="mw7 center pa1">
    {{ range .Paginator.Pages.ByPublishDate.Reverse }}
      {{ partial "post.html" . }}
    {{ end }}
    {{ partial "pagination.html" . }}
  </div>
{{ end }}