1
0

single.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.html" . }}{{ end }}
  25. {{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
  26. </div>
  27. </header>
  28. <div>
  29. {{ .Content }}
  30. </div>
  31. <footer>
  32. {{ partial "posts/series.html" . }}
  33. {{ partial "posts/disqus.html" . }}
  34. {{ partial "posts/commento.html" . }}
  35. </footer>
  36. </article>
  37. {{ partial "posts/math.html" . }}
  38. </section>
  39. {{ end }}