ananke/layouts/_default/list.html
2017-04-11 22:22:06 -04:00

18 lines
536 B
HTML
Executable file

{{ define "main" }}
<article class="cf pa3 pa4-m pa4-l nested-copy-line-height center measure-wide-l nested-img">
<div class="nested-copy-line-height nested-links nested-img mid-gray ">
{{ .Content }}
</div>
</article>
{{ $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" . }}
{{ end }}