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.

33 lines
1.2 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 "January 2, 2006" }}</h2>
  12. </header>
  13. <section id="post-body">
  14. {{ .Content }}
  15. </section>
  16. </article>
  17. <footer id="post-meta" class="clearfix">
  18. {{ with .Site.Params.twitter }}<a href="http://twitter.com/{{ . }}">{{ end }}
  19. <img class="avatar" src="{{ .Site.BaseURL }}images/avatar.png">
  20. <div>
  21. <span class="dark">{{ .Site.Params.name }}</span>
  22. <span>{{ .Site.Params.bio }}</span>
  23. </div>
  24. {{ with .Site.Params.twitter }}</a>{{ end }}
  25. <section id="sharing">
  26. {{ partial "share.html" . }}
  27. </section>
  28. </footer>
  29. </section>
  30. {{ partial "js.html" . }}
  31. </body>
  32. </html>