single.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {{ define "head" }}
  2. {{ if .Params.featuredImg -}}
  3. <style>.bg-img {background-image: url('{{.Params.featuredImg | absURL}}');}</style>
  4. {{- else if .Params.images -}}
  5. {{- range first 1 .Params.images -}}
  6. <style>.bg-img {background-image: url('{{. | absURL}}');}</style>
  7. {{- end -}}
  8. {{- end -}}
  9. {{ end }}
  10. {{ define "header" }}
  11. {{ partial "header.html" . }}
  12. {{ end }}
  13. {{ define "main" }}
  14. {{- if (or .Params.images .Params.featuredImg) }}
  15. <div class="bg-img"></div>
  16. {{- end }}
  17. <main class="site-main section-inner animated fadeIn faster">
  18. <article class="thin">
  19. <header class="post-header">
  20. <div class="post-meta"><span>{{ .Date.Format .Site.Params.dateform }}</span></div>
  21. <h1>{{ .Title }}</h1>
  22. </header>
  23. <div class="content">
  24. {{ .Content }}
  25. </div>
  26. <hr class="post-end">
  27. <footer class="post-info">
  28. {{- with .Params.tags }}
  29. <p>
  30. <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-tag meta-icon"><path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path><line x1="7" y1="7" x2="7" y2="7"></line></svg>
  31. {{- range . -}}
  32. <span class="tag"><a href="{{ "tags/" | absURL }}{{ . | urlize }}">{{.}}</a></span>
  33. {{- end }}
  34. </p>
  35. {{- end }}
  36. <p><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-file-text"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>{{ .WordCount }} Words</p>
  37. <p><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 .Site.Params.dateformNumTime .Date.Local }}</p>
  38. {{- if .GitInfo }}
  39. <p><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-git-commit"><circle cx="12" cy="12" r="4"></circle><line x1="1.05" y1="12" x2="7" y2="12"></line><line x1="17.01" y1="12" x2="22.96" y2="12"></line></svg><a href="{{ .Site.Params.gitUrl -}}{{ .GitInfo.Hash }}" target="_blank" rel="noopener">{{ .GitInfo.AbbreviatedHash }}</a> @ {{ dateFormat .Site.Params.dateformNum .GitInfo.AuthorDate.Local }}</p>
  40. {{- end }}
  41. </footer>
  42. </article>
  43. {{- if .Params.toc }}
  44. <aside id="toc">
  45. <div class="toc-title">Table of Contents</div>
  46. {{ .TableOfContents }}
  47. </aside>
  48. {{- end }}
  49. <div class="post-nav thin">
  50. {{- with .NextInSection }}
  51. <a class="next-post" href="{{ .Permalink }}">
  52. <span class="post-nav-label"><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-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>&nbsp;Newer</span><br><span>{{ .Title }}</span>
  53. </a>
  54. {{- end }}
  55. {{- with .PrevInSection }}
  56. <a class="prev-post" href="{{ .Permalink }}">
  57. <span class="post-nav-label">Older&nbsp;<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-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg></span><br><span>{{ .Title }}</span>
  58. </a>
  59. {{- end }}
  60. </div>
  61. {{ partialCached "comments.html" . }}
  62. </main>
  63. {{ end }}
  64. {{ define "footer" }}
  65. {{ partialCached "footer.html" . }}
  66. {{ end }}