summaryrefslogtreecommitdiff
path: root/layouts/_default/index.html
blob: 8dba7d3fc63d05791fe46b4fda9df94ec710873e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{{ define "main" }}
<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!

<br><br>
<nav class="personal">
  <a href="/me/contact/">Contact</a> //
  <a href="/me/uses/">Uses</a> //
  <a href="/about/">About</a> //
  <a href="/links/">Links</a> //
  <a href="/me/now/">Now</a>
</nav>

<BR>

<h2>Recent updates and publications </h2>

{{ range first 10 
.Site.RegularPages.ByDate.Reverse
}}
{{ partial "partials/article_list_item.html" . }}
{{ end }}
<p>
  <a href="/blog/">&raquo; Go to blog</a>
</p>

{{ partial "partials/homepage/brainrot" . }}
{{ partial "partials/homepage/bsd.html" . }}
{{ partial "partials/homepage/emacs.html" . }}
{{ partial "partials/homepage/startrek.html" . }}
<h2>Sections</h2>

<nav>
  <P><a class="sec-link" href="/blog/"><b>Blog</b>: my shorter publications withount any theme. You can treat it as E/N site.</a> </p>
  <P><a class="sec-link" href="/articles/"><b>Articles</b>: longer publications that don't fit blog or any other category.</a> </p>
  <P><a class="sec-link" href="/funnies/"><b>Funnies</b>: A small, curated collection of things I found funny or ammusing.</a> </p>
  <p><a class="sec-link" href="/git/"><b>Version control system</b> : My little code repository. I don't expect to cooporate on any of those, so it's just stagit.</a></p>
</nav>

{{ partial "partials/homepage/buttons.html" . }}
{{ partial "partials/homepage/nameplate.html" . }}

{{ end }}