Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

list.html 522B

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