1
0

index.html 568 B

12345678910111213141516171819202122
  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>Recent Posts / 最新文章</h2>
  12. <ul class="recent-posts-list lsc">
  13. {{ range first 3 (where site.RegularPages "Type" "in" "writing") -}}
  14. <li>
  15. <span>{{ .Date.Local.Format "2006-01-02" }} </span>
  16. <a href="{{.RelPermalink}}">{{.Title}}</a>
  17. </li>
  18. {{ end }}
  19. <li><a href="{{"/writing/" | relURL}}" class="tdln">[…]</a></li>
  20. </ul>
  21. </section>
  22. {{- end }}