single.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {{ define "main" }}
  2. <div class="page-title">
  3. <h1>{{.Title}}</h1>
  4. <div class="dim post-info">{{ dateFormat ":date_long" .Date.Local }} · {{ .WordCount }}字
  5. {{- with .GetTerms "tags" }} · {{ range . }}<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>{{ end -}}
  6. {{ end -}}
  7. </div>
  8. </div>
  9. <div class="content">
  10. {{ with .Params.featuredImage -}}
  11. {{ with $.Resources.GetMatch . -}}
  12. <figure class="big">
  13. <img src="{{.RelPermalink}}" alt="featured image" width="{{.Width}}" height="{{.Height}}">
  14. </figure>
  15. {{ end -}}
  16. {{ end -}}
  17. {{ if .Params.toc -}}
  18. <details class="toc-wrapper">
  19. <summary>目录</summary>
  20. {{ .TableOfContents }}
  21. </details>
  22. {{- end }}
  23. {{ with .Content -}}{{ . }}{{ end }}
  24. <ul class="lsn dim post-footer">
  25. <li>/* 最后更新于{{ dateFormat "2006-01-02 15:04 MST" .Lastmod.UTC }} */</li>
  26. {{- with .PrevInSection }}
  27. <li>
  28. <a href="{{.RelPermalink}}" class="post-item tdln">
  29. <span>上一篇:{{.Title}}</span>
  30. <span class="dotted-line"></span>
  31. <time class="dim">{{ .Date.Format "2006-01-02" }}</time>
  32. </a>
  33. </li>
  34. {{- end }}
  35. {{- with .NextInSection }}
  36. <li>
  37. <a href="{{.RelPermalink}}" class="post-item tdln">
  38. <span>下一篇:{{.Title}}</span>
  39. <span class="dotted-line"></span>
  40. <time class="dim">{{ .Date.Format "2006-01-02" }}</time>
  41. </a>
  42. </li>
  43. {{- end }}
  44. </ul>
  45. {{ partialCached "comments.html" . }}
  46. </div>
  47. {{- end }}