aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 9717a677c800162ac695a32446e6c917855cf96b (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
{{ template "base.html" . }}

{{ define "content" }}
<div>
  <p>{{ .Config.Description }}</p>

  <h2><a name="posts"></a>More long form, ramblings etc</h2>
  <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list">
	  <meta itemprop="name" content="Article list">
	  {{ range .Pages }}
	  {{ if eq .Type "post" }}
	  <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
	  {{ end }}
	  {{ end }}
  </ul>

  <h2><a name="notes"></a>Notes?! Maybe useful</h2>
  <h2></h2>
  <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list">
	  <meta itemprop="name" content="Note list">
	  {{ range .Pages }}
	  {{ if eq .Type "note" }}
	  <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
	  {{ end }}
	  {{ end }}
  </ul>

  <h2><a name="sideprojects"></a>Side projects I work/worked on</h2>
  <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list">
	  <meta itemprop="name" content="Note list">
    <li><a href="https://git.mitjafelicijan.com/cord.h.git/" target="_blank">cord.h</a> — Small C library for handling strings</li>
		<li><a href="https://git.mitjafelicijan.com/mprogress.git/" target="_blank">mprogress</a> — Tiny utility that displays progress bar in terminal</li>
		<li><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank">journalctl-proxy</a> — Exposes your systemd logs to web via web interface</li>
		<li><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank">redis-marshal</a> — Lightweight Redis data exploration tool</li>
		<li><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank">vertex</a> — Create mock API's and add basic logic to simplify prototyping</li>
		<li><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank">dna-encoding</a> — Tools for encoding files to DNA sequence</li>
		<li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a> — Minimal configuration reverse proxy</li>
  </ul>
</div>
{{ end }}