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.

38 lines
1.3 KiB

  1. {{ partial "head.html" . }}
  2. <body>
  3. {{ partial "nav.html" . }}
  4. <section id="wrapper">
  5. <article class="post">
  6. <header>
  7. <h1>{{ .Title }}</h1>
  8. <h2 class="headline">{{ .Date.Format "January 2, 2006" }}</h2>
  9. </header>
  10. <section id="post-body">
  11. {{ .Content }}
  12. </section>
  13. </article>
  14. <footer id="post-meta" class="clearfix">
  15. {{ with .Site.Params.twitter }}<a href="http://twitter.com/{{ . }}">{{ end }}
  16. <img class="avatar" src="{{ .Site.BaseURL }}images/avatar.png">
  17. <div>
  18. <span class="dark">{{ .Site.Params.name }}</span>
  19. <span>{{ .Site.Params.bio }}</span>
  20. </div>
  21. {{ with .Site.Params.twitter }}</a>{{ end }}
  22. <section id="sharing">
  23. {{ partial "share.html" . }}
  24. </section>
  25. </footer>
  26. {{ if isset .Site.Params "disqusShortname" }}
  27. {{ partial "disqus.html" . }}
  28. {{ end }}
  29. {{ partial "latest-posts.html" . }}
  30. {{ partial "footer.html" . }}
  31. </section>
  32. {{ partial "js.html" . }}
  33. </body>
  34. </html>