aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html116
1 files changed, 23 insertions, 93 deletions
diff --git a/templates/index.html b/templates/index.html
index aa5bde2..9717a67 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,110 +1,40 @@
1{{ template "base.html" . }} 1{{ template "base.html" . }}
2 2
3{{ define "add-navigation" }}
4<nav class="additional">
5 <a href="#current">Current</a>
6 <a href="#posts">Posts</a>
7 <a href="#notes">Notes</a>
8 <a href="#sideprojects">Side projects</a>
9</nav>
10{{ end }}
11
12{{ define "content" }} 3{{ define "content" }}
13<div> 4<div>
14 <p>{{ .Config.Description }}</p> 5 <p>{{ .Config.Description }}</p>
15 6
16 <h2><a name="current"></a>What I am currently working on</h2>
17 <p>Semi-live status of things to keep myself honest!</p>
18 <table>
19 <thead>
20 <tr>
21 <th width="5"></th>
22 <th>Project name</th>
23 <th>What is being worked on?</th>
24 <th>Last update</th>
25 </tr>
26 </thead>
27 <tbody>
28 <tr>
29 <td class="pstatus-green" title="Kinda works"></td>
30 <td><a href="https://github.com/mitjafelicijan/i3blocks" target="_blank">i3blocks</a></td>
31 <td>Testing blocks: cpu, ram, disk and nvidia gpu.</td>
32 <td>12th of July, 2023</td>
33 </tr>
34 <tr>
35 <td class="pstatus-orange" title="Somewhat works"></td>
36 <td><a href="https://github.com/mitjafelicijan/errand" target="_blank">Errand</a></td>
37 <td>Working on re-implementating the whole thing in C.</td>
38 <td>7th of July, 2023</td>
39 </tr>
40 <tr>
41 <td class="pstatus-green" title="Kinda works"></td>
42 <td><a href="https://github.com/mitjafelicijan/jbmafp" target="_blank">JBMAFP</a></td>
43 <td>Fixing minor issues and writing docs.</td>
44 <td>8th of July, 2023</td>
45 </tr>
46 <tr>
47 <td class="pstatus-red" title="Still in initial stage"></td>
48 <td><a href="https://github.com/mitjafelicijan/marionette" target="_blank">Marionette</a></td>
49 <td>Implementing HTTP server for viewing reports.</td>
50 <td>6th of July, 2023</td>
51 </tr>
52 </tbody>
53 </table>
54
55 <h2><a name="posts"></a>More long form, ramblings etc</h2> 7 <h2><a name="posts"></a>More long form, ramblings etc</h2>
56 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list"> 8 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list">
57 <meta itemprop="name" content="Article list"> 9 <meta itemprop="name" content="Article list">
58 {{ range .Pages }} 10 {{ range .Pages }}
59 {{ if eq .Type "post" }} 11 {{ if eq .Type "post" }}
60 <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li> 12 <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
61 {{ end }} 13 {{ end }}
62 {{ end }} 14 {{ end }}
63 </ul> 15 </ul>
64 16
65 <h2><a name="notes"></a>Notes?! Maybe useful</h2> 17 <h2><a name="notes"></a>Notes?! Maybe useful</h2>
66 <h2></h2> 18 <h2></h2>
67 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list"> 19 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list">
68 <meta itemprop="name" content="Note list"> 20 <meta itemprop="name" content="Note list">
69 {{ range .Pages }} 21 {{ range .Pages }}
70 {{ if eq .Type "note" }} 22 {{ if eq .Type "note" }}
71 <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li> 23 <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
72 {{ end }} 24 {{ end }}
73 {{ end }} 25 {{ end }}
74 </ul> 26 </ul>
75 27
76 <h2><a name="sideprojects"></a>Side projects I work/worked on</h2> 28 <h2><a name="sideprojects"></a>Side projects I work/worked on</h2>
77 <table> 29 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list">
78 <tbody> 30 <meta itemprop="name" content="Note list">
79 <tr> 31 <li><a href="https://git.mitjafelicijan.com/cord.h.git/" target="_blank">cord.h</a> — Small C library for handling strings</li>
80 <td><a href="https://git.mitjafelicijan.com/cord.h.git/" target="_blank">cord.h</a></td> 32 <li><a href="https://git.mitjafelicijan.com/mprogress.git/" target="_blank">mprogress</a> — Tiny utility that displays progress bar in terminal</li>
81 <td>Small C library for handling strings</td> 33 <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>
82 </tr> 34 <li><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank">redis-marshal</a> — Lightweight Redis data exploration tool</li>
83 <tr> 35 <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>
84 <td><a href="https://git.mitjafelicijan.com/mprogress.git/" target="_blank">mprogress</a></td> 36 <li><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank">dna-encoding</a> — Tools for encoding files to DNA sequence</li>
85 <td>Tiny utility that displays progress bar in terminal</td> 37 <li><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a> — Minimal configuration reverse proxy</li>
86 </tr> 38 </ul>
87 <tr>
88 <td><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank">journalctl-proxy</a></td>
89 <td>Exposes your systemd logs to web via web interface</td>
90 </tr>
91 <tr>
92 <td><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank">redis-marshal</a></td>
93 <td>Lightweight Redis data exploration tool</td>
94 </tr>
95 <tr>
96 <td><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank">dna-encoding</a></td>
97 <td>Tools for encoding files to DNA sequence</td>
98 </tr>
99 <tr>
100 <td><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank">vertex</a></td>
101 <td>Create mock API's and add basic logic to simplify prototyping</td>
102 </tr>
103 <tr>
104 <td><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a></td>
105 <td>Minimal configuration reverse proxy</td>
106 </tr>
107 </tbody>
108 </table>
109</div> 39</div>
110{{ end }} 40{{ end }}