single.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {{ define "main" }}
  2. <div class="page-title">
  3. <h1>{{.Title}}</h1>
  4. <ul class="lsn dim post-info">
  5. {{ with .Params.shot_date -}}
  6. <li>
  7. <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-calendar"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg> {{ dateFormat ":date_long" . }}
  8. </li>
  9. {{ end -}}
  10. {{ with .Params.location -}}
  11. <li>
  12. <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-map-pin"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg> {{ . }}
  13. </li>
  14. {{ end -}}
  15. {{ with .Params.shot_with -}}
  16. <li>
  17. <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-camera"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path><circle cx="12" cy="13" r="4"></circle></svg> {{ . }}
  18. </li>
  19. {{ end -}}
  20. {{ with .GetTerms "tags" }}
  21. <li>
  22. {{ range . }}<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>{{ end }}
  23. </li>
  24. {{ end -}}
  25. </ul>
  26. {{ with .Params.description -}}
  27. <p class="dim">{{ . }}</p>
  28. {{ end -}}
  29. </div>
  30. <div class="content">
  31. {{ with .Content -}}{{ . }}{{ end }}
  32. <ul class="lsn dim post-footer">
  33. <li>/* 最后更新于{{ dateFormat "2006-01-02 15:04 MST" .Lastmod.UTC }} */</li>
  34. {{- with .PrevInSection }}
  35. <li>
  36. <a href="{{.RelPermalink}}" class="post-item tdln">
  37. <span>上一篇:{{.Title}}</span>
  38. <span class="dotted-line"></span>
  39. <time class="dim">{{ dateFormat "2006-01-02" .Params.shot_date }}</time>
  40. </a>
  41. </li>
  42. {{- end }}
  43. {{- with .NextInSection }}
  44. <li>
  45. <a href="{{.RelPermalink}}" class="post-item tdln">
  46. <span>下一篇:{{.Title}}</span>
  47. <span class="dotted-line"></span>
  48. <time class="dim">{{ dateFormat "2006-01-02" .Params.shot_date }}</time>
  49. </a>
  50. </li>
  51. {{- end }}
  52. </ul>
  53. {{ partialCached "comments.html" . }}
  54. </div>
  55. {{- end }}