blob: d08b6bc05afb2dbd2b00a2ba3d0afddc3b0b3ef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ define "main" }}
<article class="list taxonomy">
<h2>About</h2>
Hey! I'm Michał Sapka, a computer programmer living in Kraków, Poland. This website is not dedicated to any particular one thing. Instead, I write whatever interests me most at the moment. No content here is auto-generated, so any bugs, problems, or controversies are entirely on me!
<h2>Articles</h2>
{{ range (where site.RegularPages "Type" "!=" "special") }}
{{ partial "partials/article_list_item.html" . }}
{{ end }}
</article>
{{ end }}
|