devroom.io/themes/outerspace/layouts/index.html

29 lines
746 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
<section id="posts">
2015-06-10 22:46:38 +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. Besides programming I like to repair
audio equipment, experiment with electronics and play the piano.
<a href="/about">Read more about me</a>.
2015-06-10 22:46:38 +00:00
</p>
2016-01-06 14:44:01 +00:00
<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>
2015-03-26 11:28:08 +00:00
{{ end }}
2016-01-06 14:44:01 +00:00
2015-03-26 11:28:08 +00:00
</section>
{{ partial "footer.html" . }}