single.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {{ define "main" }}
  2. <main class="wrapper">
  3. <h1>{{.Title}}</h1>
  4. <div class="dim post-info">
  5. {{ dateFormat ":date_long" .Date.Local }}
  6. {{- if .Params.toc -}}
  7. &nbsp;&#183;
  8. <label for="toc-toggle">目录</label>
  9. <input type="checkbox" id="toc-toggle">
  10. <div id="toc">
  11. {{ .TableOfContents }}
  12. </div>
  13. {{- end }}
  14. </div>
  15. {{ if .Content -}}
  16. <div class="content">
  17. {{ .Content }}
  18. </div>
  19. {{- end }}
  20. <ul class="lsn dim post-footer">
  21. <li>发布于{{ dateFormat "2006-01-02 15:04 MST" .Date.UTC }},更新于{{ dateFormat "2006-01-02 15:04 MST" .Lastmod.UTC }}</li>
  22. <li>字&emsp;数:{{ .WordCount }}</li>
  23. {{- with .Params.tags }}
  24. <li>标&emsp;签:{{- range . -}}<a href="{{ "tags/" | relURL }}{{ . | urlize }}" class="post-tag">{{.}}</a>{{ end }}</li>
  25. {{- end }}
  26. <li></li>
  27. {{- with .PrevInSection }}
  28. <li>上一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  29. {{- end }}
  30. {{- with .NextInSection }}
  31. <li>下一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  32. {{- end }}
  33. </ul>
  34. {{ partialCached "comments.html" . }}
  35. </main>
  36. <hr>
  37. {{- end }}