ananke/layouts/_default/list.html

18 lines
536 B
HTML
Raw Normal View History

2017-04-11 03:27:13 +02:00
{{ define "main" }}
2017-04-12 04:22:06 +02:00
<article class="cf pa3 pa4-m pa4-l nested-copy-line-height center measure-wide-l nested-img">
2017-04-11 05:48:09 +02:00
<div class="nested-copy-line-height nested-links nested-img mid-gray ">
2017-04-11 03:27:13 +02:00
{{ .Content }}
</div>
</article>
2017-04-12 04:22:06 +02:00
{{ $section := .Paginate (where .Data.Pages "Section" .Section) }}
<section class="flex-ns flex-wrap justify-around mt5">
{{ range sort $section.Pages "Date" "desc" }}
{{ partial "summary.html" . }}
{{ end }}
</section>
{{ template "_internal/pagination.html" . }}
2017-04-11 03:27:13 +02:00
{{ end }}