1
0

single.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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="fa fa-calendar" aria-hidden="true"></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="fa fa-clock-o" aria-hidden="true"></i>
  21. {{ i18n "reading_time" .ReadingTime }}
  22. </span>
  23. </div>
  24. {{ with .Page.Params.Authors }}{{ partial "taxonomy/authors.html" . }}{{ end }}
  25. {{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
  26. {{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
  27. </div>
  28. </header>
  29. <div>
  30. {{ if .Params.featuredImage }}
  31. <img src='{{ .Params.featuredImage }}' alt="Featured image"/>
  32. {{ end }}
  33. {{ .Content }}
  34. </div>
  35. <footer>
  36. {{ partial "posts/series.html" . }}
  37. {{ partial "posts/disqus.html" . }}
  38. {{ partial "posts/commento.html" . }}
  39. {{ partial "posts/utterances.html" . }}
  40. </footer>
  41. </article>
  42. {{ partial "posts/math.html" . }}
  43. </section>
  44. {{ end }}