single.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. {{ with .Params.featuredImage -}}
  18. {{ with $.Resources.GetMatch . -}}
  19. <figure class="big">
  20. <img src="{{.RelPermalink}}" alt="featured image" width="{{.Width}}" height="{{.Height}}">
  21. </figure>
  22. {{- end }}
  23. {{- end }}
  24. {{ .Content }}
  25. </div>
  26. {{- end }}
  27. <ul class="lsn dim post-footer">
  28. <li>发布于{{ dateFormat "2006-01-02 15:04 MST" .Date.UTC }},更新于{{ dateFormat "2006-01-02 15:04 MST" .Lastmod.UTC }}</li>
  29. <li>字&emsp;数:{{ .WordCount }}</li>
  30. {{- with .Params.tags }}
  31. <li>标&emsp;签:{{- range . -}}<a href="{{ "tags/" | relURL }}{{ . | urlize }}" class="post-tag">{{.}}</a>{{ end }}</li>
  32. {{- end }}
  33. <li></li>
  34. {{- with .PrevInSection }}
  35. <li>上一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  36. {{- end }}
  37. {{- with .NextInSection }}
  38. <li>下一篇:<a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  39. {{- end }}
  40. </ul>
  41. {{ partialCached "comments.html" . }}
  42. </main>
  43. {{- end }}