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

index.html 367B

123456789101112
  1. {{ define "main" }}
  2. {{ $section := where .Data.Pages "Section" "article" }}
  3. <main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide lh-copy gray">
  4. {{ .Content }}
  5. </main>
  6. <section class="flex-ns flex-wrap justify-between w-100 mt5 v-top">
  7. {{ range sort $section "Date" "desc" }}
  8. {{ .Render "summary" }}
  9. {{ end }}
  10. </section>
  11. {{ end }}