You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.3 KiB

  1. <!DOCTYPE html>
  2. <html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
  3. <head>
  4. {{ partial "head.html" . }}
  5. </head>
  6. <body>
  7. <section id="wrapper">
  8. <article class="post">
  9. <header>
  10. <h1>{{ .Title }}</h1>
  11. <h2 class="headline">{{ .Date.Format "02/01/2006" }}</h2>
  12. </header>
  13. <section id="post-body">
  14. {{ .Content }}
  15. </section>
  16. </article>
  17. <footer id="post-meta" class="clearfix">
  18. <!-- TODO: Add support for twitter with conditional behavior -->
  19. {{ with .Site.Params.twitter }}<a href="http://twitter.com/{{ . }}">{{ end }}
  20. <img class="avatar" src="{{ .Site.BaseURL }}images/avatar.png">
  21. <div>
  22. <span class="dark">{{ .Site.Params.name }}</span>
  23. <span>{{ .Site.Params.bio }}</span>
  24. </div>
  25. {{ with .Site.Params.twitter }}</a>{{ end }}
  26. <section id="sharing">
  27. {{ partial "share.html" . }}
  28. </section>
  29. </footer>
  30. </section>
  31. {{ partial "js.html" . }}
  32. </body>
  33. </html>