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.

article.html 414B

12345678910111213
  1. {{ define "main" }}
  2. {{ $section := where .Data.Pages "Section" .Section }}
  3. <article class="pa3 pa4-ns nested-copy-line-height nested-img">
  4. <div class="{{ .Site.Params.copyClass }}">
  5. {{ .Content }}
  6. </div>
  7. <section class="flex-ns flex-wrap justify-around mt5">
  8. {{ range sort $section "Date" "desc" }}
  9. {{ .Render "summary" }}
  10. {{ end }}
  11. </section>
  12. </article>
  13. {{ end }}