You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 367B

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