aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <m@mitjafelicijan.com>2023-07-08 23:25:41 +0200
committerMitja Felicijan <m@mitjafelicijan.com>2023-07-08 23:25:41 +0200
commitcd6644ea4ddc78597934ab0ef5ba50e3c3daa927 (patch)
tree03de331a8db6386dfd6fa75155bfbcea6b4feaf3 /templates/index.html
parent84ed124529ffeee1590295b8de3a8faf51848680 (diff)
downloadmitjafelicijan.com-cd6644ea4ddc78597934ab0ef5ba50e3c3daa927.tar.gz
Moved to a simpler SSG
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html105
1 files changed, 105 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..affec2d
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,105 @@
1{{ template "base.html" . }}
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" }}
13<div>
14 <h1>A place where I experiment and have fun!</h1>
15 <p>{{ .Config.Description }}</p>
16 <p>Please <b><i>stop offering me a redesign</i></b> of this webpage. This site
17 intentionally looks like it does!</p>
18
19 <h2><a name="current"></a>What I am currently working on</h2>
20 <p>Semi-live status of things to keep myself honest!</p>
21 <table>
22 <thead>
23 <tr>
24 <th width="5"></th>
25 <th>Project name</th>
26 <th>What is being worked on?</th>
27 <th>Last updated</th>
28 </tr>
29 </thead>
30 <tbody>
31 <tr>
32 <td class="pstatus-orange" title="Somewhat works"></td>
33 <td><a href="https://github.com/mitjafelicijan/errand" target="_blank">Errand - Task runner</a></td>
34 <td>Working on re-implementating the whole thing in C.</td>
35 <td>7th of June, 2023</td>
36 </tr>
37 <tr>
38 <td class="pstatus-green" title="Kinda works"></td>
39 <td><a href="https://github.com/mitjafelicijan/jbmafp" target="_blank">JBMAFP - Generates static sites</a></td>
40 <td>Fixing minor issues and writing docs.</td>
41 <td>8th of June, 2023</td>
42 </tr>
43 <tr>
44 <td class="pstatus-red" title="Still in initial stage"></td>
45 <td><a href="https://github.com/mitjafelicijan/marionette" target="_blank">Marionette - UI testing tool</a></td>
46 <td>Implementing HTTP server for viewing reports.</td>
47 <td>6th of June, 2023</td>
48 </tr>
49 </tbody>
50 </table>
51
52 <h2><a name="posts"></a>More long form, blog type of content</h2>
53 <ul>
54 {{ range .Pages }}
55 {{ if eq .Type "post" }}
56 <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
57 {{ end }}
58 {{ end }}
59 </ul>
60
61 <h2><a name="notes"></a>Notes?! Maybe useful</h2>
62 <h2></h2>
63 <ul>
64 {{ range .Pages }}
65 {{ if eq .Type "note" }}
66 <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
67 {{ end }}
68 {{ end }}
69 </ul>
70
71 <h2><a name="sideprojects"></a>Side projects I work/worked on</h2>
72 <table>
73 <tbody>
74 <tr>
75 <td><a href="https://git.mitjafelicijan.com/cord.h.git/" target="_blank">cord.h</a></td>
76 <td>Small C library for handling strings</td>
77 </tr>
78 <tr>
79 <td><a href="https://git.mitjafelicijan.com/mprogress.git/" target="_blank">mprogress</a></td>
80 <td>Tiny utility that displays progress bar in terminal</td>
81 </tr>
82 <tr>
83 <td><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank">journalctl-proxy</a></td>
84 <td>Exposes your systemd logs to web via web interface</td>
85 </tr>
86 <tr>
87 <td><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank">redis-marshal</a></td>
88 <td>Lightweight Redis data exploration tool</td>
89 </tr>
90 <tr>
91 <td><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank">dna-encoding</a></td>
92 <td>Tools for encoding files to DNA sequence</td>
93 </tr>
94 <tr>
95 <td><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank">vertex</a></td>
96 <td>Create mock API's and add basic logic to simplify prototyping</td>
97 </tr>
98 <tr>
99 <td><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a></td>
100 <td>Minimal configuration reverse proxy</td>
101 </tr>
102 </tbody>
103 </table>
104</div>
105{{ end }}