ananke/layouts/_default/list.html

19 lines
611 B
HTML
Raw Normal View History

2017-04-11 03:27:13 +02:00
{{ define "main" }}
2017-04-14 05:01:23 +02:00
<article class="cf pa3 pa4-m pa4-l">
2018-01-09 05:03:52 +01:00
<div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img mid-gray">
2017-04-11 03:27:13 +02:00
{{ .Content }}
</div>
</article>
2017-04-15 03:58:31 +02:00
<div class="mw8 center">
2018-01-09 05:03:52 +01:00
{{ $paginator := .Paginate (where .Data.Pages "Section" .Section) }}
2017-04-14 05:01:23 +02:00
<section class="flex-ns flex-wrap justify-around mt5">
2018-01-09 05:03:52 +01:00
{{ range $paginator.Pages }}
2017-04-15 03:58:31 +02:00
<div class="relative w-100 mb4 bg-white">
{{ partial "summary.html" . }}
</div>
2017-04-14 05:01:23 +02:00
{{ end }}
</section>
2017-04-12 04:22:06 +02:00
{{ template "_internal/pagination.html" . }}
2017-04-14 05:01:23 +02:00
</div>
2017-04-11 03:27:13 +02:00
{{ end }}