aboutsummaryrefslogtreecommitdiff
path: root/themes/simple/layouts/_default/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/simple/layouts/_default/list.html')
-rw-r--r--themes/simple/layouts/_default/list.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/themes/simple/layouts/_default/list.html b/themes/simple/layouts/_default/list.html
new file mode 100644
index 0000000..e194063
--- /dev/null
+++ b/themes/simple/layouts/_default/list.html
@@ -0,0 +1,32 @@
1{{ define "main" }}
2<main aria-role="main" class="container-blog">
3
4 <h1 class="text-2xl font-bold mb-6">Blog posts</h1>
5
6 <!-- List of all blog posts -->
7 <nav itemscope itemtype="https://schema.org/SiteNavigationElement" class="mb-12">
8 <meta itemprop="name" content="Article list">
9 <ul>
10 {{ range (where .Site.RegularPages "Section" "posts") }}
11 <li class="mb-5">
12 <time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Monday Jan 2, 2006" }}</time>
13 <a href="{{.Permalink}}" itemprop="url" class="hover:bg-yellow-200">{{.Title}}</a>
14 </li>
15 {{end}}
16 </ul>
17 </nav>
18
19 <!-- Projects I work on -->
20 <section class="mb-12">
21 <h4 class="text-2xl font-bold mb-6">Side projects I work/worked on</h4>
22 <ul class="list-disc ml-6">
23 <li><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">journalctl-proxy - Exposes your systemd logs to web via web interface</a></li>
24 <li><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">redis-marshal - Lightweight Redis data exploration tool</a></li>
25 <li><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">dna-encoding - Tools for encoding files to DNA sequence</a></li>
26 <li><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">vertex - Create mock API's and add basic logic to simplify prototyping</a></li>
27 <li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank" rel="noopener nofollow" class="underline hover:bg-yellow-200">scarecrow - Minimal configuration reverse proxy</a></li>
28 </ul>
29 </section>
30
31</main>
32{{ end }}