single.html 2.1 KB

12345678910111213141516171819202122232425262728293031
  1. {{ define "header" }}{{ partial "header.html" . }}{{ end }}
  2. {{ define "main" }}
  3. <main class="site-main section-inner">
  4. <article class="thin">
  5. <header class="post-header">
  6. <h1>{{ .Title }}</h1>
  7. <p class="post-meta">{{- .Date.Format .Site.Params.dateformSingle }} &#183; {{ .ReadingTime }} min read</p>
  8. </header>
  9. <div class="content">
  10. {{ .Content }}
  11. </div>
  12. <hr class="post-end">
  13. <footer class="post-info">
  14. {{- with .Params.tags }}
  15. <p>
  16. <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>
  17. {{- range . }}
  18. <span class="tag"><a href="{{ "tags/" | absURL }}{{ . | urlize }}">{{.}}</a></span>
  19. {{- end }}
  20. </p>
  21. {{- end }}
  22. <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>
  23. <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.dateformFull .Date.Local }}</p>
  24. </footer>
  25. </article>
  26. {{ partial "comments.html" . }}
  27. </main>
  28. {{ end }}
  29. {{ define "footer" }}{{ partial "footer.html" . }}{{ end }}