single.html 977 B

1234567891011121314151617181920212223242526272829
  1. {{ define "main" }}
  2. <main class="wrapper">
  3. <h1><a href="/" class="home">{{.Title}}</a></h1>
  4. <div class="dim post-info">
  5. {{ dateFormat ":date_long" .Date.Local }}
  6. </div>
  7. {{ if .Content -}}
  8. <div class="content">
  9. {{ .Content }}
  10. </div>
  11. {{- end }}
  12. <ul class="lsn dim post-footer">
  13. <li>发布于{{ dateFormat "2006-01-02 15:04 -0700" .Date.Local }},最后更新于{{ dateFormat "2006-01-02 15:04 -0700" .Lastmod.Local }}</li>
  14. <li>字&emsp;数:{{ .WordCount }}</li>
  15. {{- with .Params.tags }}
  16. <li>标&emsp;签:{{- range . -}}<a href="{{ "tags/" | relURL }}{{ . | urlize }}" class="post-tag">{{.}}</a>{{ end }}</li>
  17. {{- end }}
  18. <li></li>
  19. {{- with .PrevInSection }}
  20. <li>上一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  21. {{- end }}
  22. {{- with .NextInSection }}
  23. <li>下一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  24. {{- end }}
  25. </ul>
  26. {{ partialCached "comments.html" . }}
  27. </main>
  28. <hr>
  29. {{- end }}