Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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