blob: 04589cbb416a2ab54fdf696840242bf3ca0c4626 (
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
|
{{ define "main" }}
<main aria-role="main" class="container-blog mx-auto px-6 md:p-0">
<h1 class="text-2xl font-bold mb-6">Blog posts</h1>
<!-- List of all blog posts -->
<nav itemscope itemtype="https://schema.org/SiteNavigationElement" class="mb-12">
<meta itemprop="name" content="Article list">
<ul>
{{ range (where .Site.RegularPages "Section" "posts") }}
<li class="mb-5">
<time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Monday Jan 2, 2006" }}</time>
<a href="{{.Permalink}}" itemprop="url" class="hover:bg-yellow-100">{{.Title}}</a>
</li>
{{end}}
</ul>
</nav>
<hr class="border-2 border-gray-100 mb-10">
<!-- Projects I work on -->
<section class="mb-12">
<h4 class="text-2xl font-bold mb-6">Side projects I worked on</h4>
<ul class="list-disc ml-6">
<li><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">journalctl-proxy - Exposes your systemd logs to web via web interface</a></li>
<li><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">redis-marshal - Lightweight Redis data exploration tool</a></li>
<li><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">dna-encoding - Tools for encoding files to DNA sequence</a></li>
<li><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">vertex - Create mock API's and add basic logic to simplify prototyping</a></li>
<li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank" rel="noopener nofollow" class="hover:bg-yellow-100">scarecrow - Minimal configuration reverse proxy</a></li>
</ul>
</section>
<hr class="border-2 border-gray-100 mb-10">
<!-- Openring -->
{{ partial "openring.html" . }}
</main>
{{ end }}
|