aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/list.html
blob: 2349bb7b7bd4fb8cf659cad12f5ba1fb407452bc (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">
    {{ range .Paginator.Pages.ByPublishDate.Reverse }}
      {{ partial "post.html" . }}
    {{ end }}
    {{ partial "pagination.html" . }}
  </div>
{{ end }}