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

{{ define "main" }}
  <div class="max-w-screen-md mx-auto p-1">
    {{ range .Paginator.Pages.ByPublishDate.Reverse }}
      {{ partial "post.html" . }}
    {{ end }}
    {{ partial "pagination.html" . }}
  </div>
{{ end }}