您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 }}