single.html 716 B

12345678910111213141516171819202122232425
  1. {{ partial "header.html" . }}
  2. <article class="post-single">
  3. <header class="post-header">
  4. <h1 class="post-title">{{ .Title }}</h1>
  5. <div class="post-meta">
  6. {{- if or .Params.author .Site.Params.author -}}
  7. {{ .Params.author | default .Site.Params.author }} · {{ end }}
  8. {{- .Date.Format "January 2, 2006" -}}
  9. </div>
  10. </header>
  11. <div class="post-content">{{ .Content }}</div>
  12. {{ if .Params.tags }}
  13. <footer class="post-footer">
  14. <ul class="post-tags">
  15. {{ range .Params.tags }}
  16. {{ $href := print (absURL "tags/") (urlize .) }}
  17. <li><a href="{{ $href }}">{{ . }}</a></li>
  18. {{ end }}
  19. </ul>
  20. </footer>
  21. {{ end }}
  22. </article>
  23. {{ partial "footer.html" . }}