devroom.io/themes/outerspace/layouts/_default/single.html
2016-02-16 21:42:17 +01:00

36 lines
1.3 KiB
HTML

{{ partial "header.html" . }}
<article id="{{ .Slug }}" class="single-post">
{{ if eq .Section "posts" }}
<p class="meta">
<time class="date" datatime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January, 2006" }}</time>
</p>
{{ end }}
<h1>{{ .Title }}</h1>
<div class="body">
{{ .Content }}
</div>
{{ if eq .Section "posts" }}
<div class="about">
<h4>About Ariejan</h4>
<img class="avatar" src="https://0.gravatar.com/avatar/a9bfdd0cc75c857b669c37548b8bfdf9?s=100" />
<p>
Hey! I'm a software engineer building rock solid back-end systems
using Ruby, Ruby on Rails and Golang. In my free time I like to
repair audio equipment, play the piano and experiment with electronics.
</p>
<p>
I'd love to hear your questions and comments on this article!
<a href="http://twitter.com/ariejan">Mention me on twitter</a>, <a href="mailto:ariejan@ariejan.net">shoot me an email</a> or <a href="/about">read more about me</a>.
</p>
{{ end }}
</article>
{{ partial "footer.html" . }}