single.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {{ define "title" }}
  2. {{ .Title }} · {{ .Site.Title }}
  3. {{ end }}
  4. {{ define "content" }}
  5. <section class="container post">
  6. <article>
  7. <header>
  8. <div class="post-title">
  9. <h1 class="title">{{ .Title }}</h1>
  10. </div>
  11. <div class="post-meta">
  12. <div class="date">
  13. <span class="posted-on">
  14. <i class="fas fa-calendar"></i>
  15. <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
  16. {{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
  17. </time>
  18. </span>
  19. <span class="reading-time">
  20. <i class="fas fa-clock"></i>
  21. {{ i18n "reading_time" .ReadingTime }}
  22. </span>
  23. </div>
  24. {{ with .Page.Params.Categories }}{{ partial "taxonomy/categories" . }}{{ end }}
  25. {{ with .Page.Params.Tags }}{{ partial "taxonomy/tags" . }}{{ end }}
  26. </div>
  27. </header>
  28. <div>
  29. {{ .Content }}
  30. </div>
  31. <footer>
  32. {{ partial "posts/disqus" . }}
  33. </footer>
  34. </article>
  35. {{ partial "posts/math" . }}
  36. </section>
  37. {{ end }}