devroom.io/themes/outerspace/layouts/index.html
Ariejan de Vroom 493a466570 Go lightweight
2016-01-06 15:44:01 +01:00

29 lines
746 B
HTML

{{ partial "header.html" . }}
<section id="posts">
<p>
Hey! I'm a software engineer building rock solid back-end systems
using Ruby, Ruby on Rails and Golang. Besides programming I like to repair
audio equipment, experiment with electronics and play the piano.
<a href="/about">Read more about me</a>.
</p>
<h2>Recent and not-so recent blog posts</h2>
{{ range (where .Data.Pages "Section" "posts").GroupByDate "2006" }}
<h2>{{ .Key }}</h2>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}
</section>
{{ partial "footer.html" . }}