ariadne.space/layouts/index.html

11 lines
269 B
HTML
Raw Normal View History

2022-08-02 16:59:11 +00:00
{{ define "main" }}
2022-08-02 22:41:53 +00:00
{{ $paginator := .Paginate (where .Site.RegularPages "Section" "blog") }}
{{ range $paginator.Pages }}
2022-08-02 16:59:11 +00:00
{{ .Render "summary" }}
{{ end }}
2022-08-02 22:41:53 +00:00
<section rel="pagination">
{{ template "_internal/pagination.html" . }}
</section>
2022-08-02 16:59:11 +00:00
{{ end }}