blob: 46a7792c521ffc573e14c2dd7aef302b65942d9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ 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>
<nav>
<a href="/site/info/">Site info</a>
</nav>
{{ end }}
|