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.

list.html 536B

1234567891011121314151617
  1. {{ define "main" }}
  2. <article class="cf pa3 pa4-m pa4-l nested-copy-line-height center measure-wide-l nested-img">
  3. <div class="nested-copy-line-height nested-links nested-img mid-gray ">
  4. {{ .Content }}
  5. </div>
  6. </article>
  7. {{ $section := .Paginate (where .Data.Pages "Section" .Section) }}
  8. <section class="flex-ns flex-wrap justify-around mt5">
  9. {{ range sort $section.Pages "Date" "desc" }}
  10. {{ partial "summary.html" . }}
  11. {{ end }}
  12. </section>
  13. {{ template "_internal/pagination.html" . }}
  14. {{ end }}