ananke/layouts/section/article.html

14 lines
414 B
HTML
Raw Normal View History

2017-04-11 03:27:13 +02:00
{{ define "main" }}
{{ $section := where .Data.Pages "Section" .Section }}
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-11 14:53:11 +02:00
<section class="flex-ns flex-wrap justify-around mt5">
2017-04-11 03:27:13 +02:00
{{ range sort $section "Date" "desc" }}
{{ .Render "summary" }}
{{ end }}
</section>
</article>
{{ end }}