ananke/layouts/index.html

24 lines
609 B
HTML
Raw Normal View History

2017-04-11 03:27:13 +02:00
{{ define "main" }}
2017-04-11 14:53:11 +02:00
<main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide lh-copy mid-gray">
2017-04-11 03:27:13 +02:00
{{ .Content }}
</main>
2017-04-11 14:53:11 +02:00
<div class="pa3 pa4-ns">
{{ $section := where .Data.Pages "Section" "article" }}
2017-04-11 14:53:11 +02:00
<section class="flex-ns flex-wrap justify-around">
{{ range sort (first 1 $section) "Date" "desc" }}
2017-04-11 14:53:11 +02:00
{{ .Render "summary" }}
{{ end }}
</section>
<section class="flex-ns flex-wrap justify-around">
{{ range sort (first 2 (after 1 $section)) "Date" "desc" }}
{{ .Render "summary" }}
{{ end }}
</section>
2017-04-11 14:53:11 +02:00
</div>
2017-04-11 03:27:13 +02:00
{{ end }}