2017-04-11 03:27:13 +02:00
|
|
|
{{ define "main" }}
|
2017-04-11 14:53:11 +02:00
|
|
|
<article class="pa3 pa4-ns nested-copy-line-height nested-img">
|
2017-04-11 03:27:13 +02:00
|
|
|
<div class="{{ .Site.Params.copyClass }}">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2017-04-12 00:59:14 +02:00
|
|
|
{{ $section := .Paginate (where .Data.Pages "Section" .Section) }}
|
2017-04-11 14:53:11 +02:00
|
|
|
<section class="flex-ns flex-wrap justify-around mt5">
|
2017-04-14 05:01:23 +02:00
|
|
|
{{ range $section.Pages }}
|
2017-04-11 03:27:13 +02:00
|
|
|
{{ .Render "summary" }}
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2017-04-12 00:59:14 +02:00
|
|
|
{{ template "_internal/pagination.html" . }}
|
2017-04-11 03:27:13 +02:00
|
|
|
</article>
|
|
|
|
{{ end }}
|