mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Bud Parr
11.27.2017 98bc281a57874b862e03036beaf17a4ddc6be057
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
{{ $section := where .Data.Pages "Section" "article" }}
  <main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide lh-copy gray">
    {{ .Content }}
  </main>
 
  <section class="flex-ns flex-wrap justify-between w-100 mt5 v-top">
    {{ range sort $section "Date" "desc"  }}
      {{ .Render "summary" }}
    {{ end }}
  </section>
{{ end }}