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 594B

1234567891011121314151617181920212223242526272829
  1. {{ define "main" }}
  2. <main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide lh-copy mid-gray">
  3. {{ .Content }}
  4. </main>
  5. <div class="flex pa3 pa4-ns w-70 center">
  6. {{ $section := where .Data.Pages "Section" "article" }}
  7. <section class="w-60 bg-white">
  8. {{ range sort (first 1 $section) "Date" "desc" }}
  9. <h1>{{ .Title }}</h1>
  10. {{ end }}
  11. </section>
  12. <section class="w-30 ph4">
  13. {{ range sort (first 2 (after 1 $section)) "Date" "desc" }}
  14. <h2 class="f4">{{ .Title }}</h2>
  15. {{ end }}
  16. </section>
  17. </div>
  18. {{ end }}