single.html 510 B

1234567891011121314151617181920212223
  1. {{ define "title" }}
  2. {{ .Title }} · {{ .Site.Title }}
  3. {{ end }}
  4. {{ define "content" }}
  5. <section class="container post">
  6. <article>
  7. <header>
  8. <h1 class="title">{{ .Title }}</h1>
  9. <h2 class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</h2>
  10. </header>
  11. <div>
  12. {{ .Content }}
  13. </div>
  14. <footer>
  15. {{ partial "posts/disqus" . }}
  16. </footer>
  17. </article>
  18. {{ partial "posts/math" . }}
  19. </section>
  20. {{ end }}