blob: a9f87c80ababd5a03f95ec6685c9e243c8d2db54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{ 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>
<b><a href="/site/info/">Site info</a></b> : you can find site uptates, metrics, statics, and legal thingies here.
</nav>
<br><br>
{{ end }}
|