index.html 485 B

123456789101112131415161718192021
  1. {{ define "main" }}
  2. <main class="wrapper">
  3. <h1>{{.Title}}</h1>
  4. {{ if .Content -}}
  5. <div class="content">
  6. {{ .Content }}
  7. </div>
  8. {{- end }}
  9. </main>
  10. <section class="wrapper">
  11. <h2>Latest / 最新</h2>
  12. <ul class="recent-posts-list lsc">
  13. {{ range first 3 (where site.RegularPages "Type" "in" "writing") -}}
  14. <li>
  15. <a href="{{.RelPermalink}}">{{.Title}}</a>
  16. <span>{{ .Date.Local.Format "2006-01-02" }}</span>
  17. </li>
  18. {{ end }}
  19. </ul>
  20. </section>
  21. {{- end }}