devroom.io/themes/outerspace/layouts/_default/single.html

35 lines
989 B
HTML
Raw Normal View History

2015-03-26 11:28:08 +00:00
{{ partial "header.html" . }}
2016-01-06 14:44:01 +00:00
<article id="{{ .Slug }}">
{{ if eq .Section "posts" }}
<p>
2016-01-06 15:38:59 +00:00
<time class="date" datatime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January 2006" }}</time>
2016-01-06 14:44:01 +00:00
</p>
{{ end }}
2015-03-26 11:28:08 +00:00
2016-01-06 14:44:01 +00:00
<h1>{{ .Title }}</h1>
2015-03-26 11:28:08 +00:00
2016-01-06 14:44:01 +00:00
{{ .Content }}
2015-03-26 11:28:08 +00:00
2016-01-06 14:44:01 +00:00
{{ if eq .Section "posts" }}
2015-04-07 09:07:32 +00:00
2016-01-06 14:44:01 +00:00
<h3>About Ariejan</h3>
2015-04-07 09:07:32 +00:00
2016-01-06 14:44:01 +00:00
<img class="avatar" src="https://0.gravatar.com/avatar/a9bfdd0cc75c857b669c37548b8bfdf9?s=150" />
2015-04-07 09:07:32 +00:00
2016-01-06 14:44:01 +00:00
<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>
2015-04-07 09:07:32 +00:00
2016-01-06 14:44:01 +00:00
<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>
2015-03-26 11:28:08 +00:00
2016-01-06 14:44:01 +00:00
{{ end }}
</article>
2015-03-26 11:28:08 +00:00
{{ partial "footer.html" . }}