single.html 951 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {{- define "main" -}}
  2. <article class="article" itemscope itemtype="http://schema.org/Article">
  3. {{ partial "page_header.html" . }}
  4. <div class="article-container">
  5. <div class="article-style" itemprop="articleBody">
  6. {{ .Content }}
  7. </div>
  8. {{ partial "tags.html" . }}
  9. {{ if ne .Type "page" }}
  10. {{ partial "page_author.html" . }}
  11. {{ $related := site.RegularPages.Related . | first 5 }}
  12. {{ with $related }}
  13. <div class="article-widget">
  14. <div class="hr-light"></div>
  15. <h3>{{ i18n "related" }}</h3>
  16. <ul>
  17. {{ range . }}
  18. <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  19. {{ end }}
  20. </ul>
  21. </div>
  22. {{ end }}
  23. {{ end }}
  24. {{ if site.Params.section_pager }}
  25. <div class="article-widget">
  26. {{ partial "section_pager.html" . }}
  27. </div>
  28. {{ end }}
  29. {{ partial "comments.html" . }}
  30. </div>
  31. </article>
  32. {{- end -}}