Files
ally/themes/ally/layouts/_default/list.html
Madison Scott-Clary 37afe3253e #8
2019-08-11 21:13:27 -07:00

11 lines
293 B
HTML

{{ define "main" }}
<main id="main">
{{ .Content }}
{{ $paginator := .Paginate (where .Pages.ByPublishDate.Reverse ".Params.date" "!=" nil) 1 }}
{{ range $paginator.Pages.ByWeight }}
{{ .Content }}
{{ end }}
{{ template "_internal/pagination.html" . }}
</main>
{{end}}