summaryrefslogtreecommitdiff
path: root/layouts/_default/index.html
blob: 008a95854077baba05f54a94b782d396966a8f9e (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
{{ 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!

<h2>Recent updates from the entire site</h2>

{{ $recent_categories := slice "update" }}
{{ range first 7 (where .Site.RegularPages  ".Params.category" "intersect" $recent_categories) }}
  {{ partial "partials/article_list_item.html" . }}
{{ end }}
<p><a href="/all_updates">&raquo; All updates</a></p>

<h2>Recent blog posts</h2>

{{ $recent_categories := slice "blog" }}
{{ range first 7 (where .Site.RegularPages  ".Params.category" "intersect" $recent_categories) }}
  {{ partial "partials/article_list_item.html" . }}
{{ end }}
<p><a href="/blog/">&raquo; Go to blog</a></p>
<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="/bsd/"><b>BSD site</b>: my writings on Berkley Standard Distribution flabors. OSes I use at the daily basis.</a> </p>
  <P><a class="sec-link" href="/star-trek/"><b>Star Trek fan site</b>: my little shrine to the greatest american Sci-Fi that has ever graced our screens.</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="/vcs/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>
  <p><a class="sec-link" href="/site/"><b>Site info</b> : you can find site uptates, metrics, statics, and legal thingies here.</a></p>
</nav>

<h2>TOC</h2>
You can also use <a href="/toc">Table of Contents</a>.
<br><br>
{{ end }}