single.html 675 B

123456789101112131415161718192021222324252627
  1. {{ define "title"}} {{ .Title}} {{end}}
  2. {{ define "header"}} {{ partial "header" .}} {{end}}
  3. {{ define "main"}}
  4. <div class="push-center">
  5. <div id="hero">
  6. <h1 itemprop="headline"> {{.Title}}</h1>
  7. {{ if .Description }}
  8. <blockquote itemprop="description">{{ .Description }}</blockquote>
  9. {{ end }}
  10. <time class="post-time">{{ partial "post/meta" . }}</time>
  11. </div>
  12. <div id="post-box">
  13. <div id="post" itemprop="articleBody">
  14. {{.Content | safeHTML}}
  15. </div>
  16. <br>
  17. <div class="">
  18. {{ partial "post/byauthor" . }}
  19. {{ partial "post/related-content" . }}
  20. </div>
  21. </div>
  22. </div>
  23. {{ end }}
  24. {{ define "footer"}} {{ partial "footer.html" .}} {{ end }}