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

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