aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-25 17:44:59 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-25 17:44:59 +0100
commit7949cdfaecbf5613b4e83a1e648b8a716d27ed41 (patch)
treecb4291e59807ef5217adbab597fad871579ed357 /templates/index.html
parent202d280de781df7030e3c04d8bc07c55ccfd2f99 (diff)
downloadmitjafelicijan.com-7949cdfaecbf5613b4e83a1e648b8a716d27ed41.tar.gz
Add thumbnails
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html135
1 files changed, 75 insertions, 60 deletions
diff --git a/templates/index.html b/templates/index.html
index 7de8ba2..0fd6f7f 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -2,69 +2,84 @@
2 2
3{{ define "content" }} 3{{ define "content" }}
4 4
5<section class="thumbnails hide-on-mobile">
6 <div>
7 <a href="https://github.com/mitjafelicijan/glitch" target="_blank"><img src="thumbnails/glitch.png"></a>
8 <div class="name">glitch x11 window manager</div>
9 </div>
10 <div>
11 <a href="https://github.com/mitjafelicijan/qwe-editor" target="_blank"><img src="thumbnails/qwe-editor.png"></a>
12 <div class="name">qwe code editor</div>
13 </div>
14 <div>
15 <a href="https://github.com/mitjafelicijan/toy-debugger" target="_blank"><img src="thumbnails/toy-debugger.png"></a>
16 <div class="name">toy debugger</div>
17 </div>
18</section>
19
5<section> 20<section>
6 <h2>Notes / Posts</h2> 21 <h2>Notes / Posts</h2>
7 <ul class="post-list"> 22 <ul class="post-list">
8 {{ range .Pages }} 23 {{ range .Pages }}
9 {{ if and (not .Draft) (or (eq .Type "note") (eq .Type "post")) }} 24 {{ if and (not .Draft) (or (eq .Type "note") (eq .Type "post")) }}
10 <li> 25 <li>
11 <time datetime="{{ .Created.Format "2006-01-02" }}" class="static-prefix">{{ .Created.Format "2006-01-02" }}</time> 26 <time datetime="{{ .Created.Format "2006-01-02" }}" class="static-prefix">{{ .Created.Format "2006-01-02" }}</time>
12 <span title="Note"> 27 <span title="Note">
13 <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 512 512" style="display: block"> 28 <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 512 512" style="display: block">
14 {{ if (eq .Type "note") }} 29 {{ if (eq .Type "note") }}
15 <path fill="black" fill-rule="evenodd" d="M448 343.045 343.045 448H64V64h384v279.045Zm-42.667-65.712V106.667H106.667v298.666h170.666v-128h128Zm0 42.667H320v85.333h5.333l80-80V320Z"/> 30 <path fill="black" fill-rule="evenodd" d="M448 343.045 343.045 448H64V64h384v279.045Zm-42.667-65.712V106.667H106.667v298.666h170.666v-128h128Zm0 42.667H320v85.333h5.333l80-80V320Z"/>
16 {{ end }} 31 {{ end }}
17 </svg> 32 </svg>
18 </span> 33 </span>
19 <span> 34 <span>
20 <a href="{{ .RelPermalink }}">{{ .Title }}</a> 35 <a href="{{ .RelPermalink }}">{{ .Title }}</a>
21 <span class="tags"> 36 <span class="tags">
22 {{ if .Meta.tags }} 37 {{ if .Meta.tags }}
23 {{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }} 38 {{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
24 {{ end }} 39 {{ end }}
25 </span> 40 </span>
26 </span> 41 </span>
27 </li> 42 </li>
28 {{ end }} 43 {{ end }}
29 {{ end }} 44 {{ end }}
30 </ul> 45 </ul>
31</section> 46</section>
32 47
33<section class="hide-on-mobile"> 48<section class="hide-on-mobile">
34 <h2>Tools / Experiments</h2> 49 <h2>Tools / Experiments</h2>
35 <table class="normal"> 50 <table class="normal">
36 <thead> 51 <thead>
37 <tr> 52 <tr>
38 <th>Title</th> 53 <th>Title</th>
39 <th></th> 54 <th></th>
40 </tr> 55 </tr>
41 </thead> 56 </thead>
42 <tbody> 57 <tbody>
43 <tr> 58 <tr>
44 <td>Visualizations and exploration of binary files</td> 59 <td>Visualizations and exploration of binary files</td>
45 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/binary-visualization/">https://mitjafelicijan.github.io/binary-visualization/</a></td> 60 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/binary-visualization/">https://mitjafelicijan.github.io/binary-visualization/</a></td>
46 </tr> 61 </tr>
47 <tr> 62 <tr>
48 <td>Easy convert between HEX to RGBA</td> 63 <td>Easy convert between HEX to RGBA</td>
49 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/hextorgba/">https://mitjafelicijan.github.io/hextorgba/</a></td> 64 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/hextorgba/">https://mitjafelicijan.github.io/hextorgba/</a></td>
50 </tr> 65 </tr>
51 <tr> 66 <tr>
52 <td>Unicode symbol explorer</td> 67 <td>Unicode symbol explorer</td>
53 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/symbols/">https://mitjafelicijan.github.io/symbols/</a></td> 68 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/symbols/">https://mitjafelicijan.github.io/symbols/</a></td>
54 </tr> 69 </tr>
55 <tr> 70 <tr>
56 <td>GGUF model list &amp; tools</td> 71 <td>GGUF model list &amp; tools</td>
57 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/gguf-list/">https://mitjafelicijan.github.io/gguf-list/</a></td> 72 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/gguf-list/">https://mitjafelicijan.github.io/gguf-list/</a></td>
58 </tr> 73 </tr>
59 <tr> 74 <tr>
60 <td>Soundscapes board</td> 75 <td>Soundscapes board</td>
61 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/soundscapes/">https://mitjafelicijan.github.io/soundscapes/</a></td> 76 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/soundscapes/">https://mitjafelicijan.github.io/soundscapes/</a></td>
62 </tr> 77 </tr>
63 <tr> 78 <tr>
64 <td>Maps of DOOM and other well known WADS</td> 79 <td>Maps of DOOM and other well known WADS</td>
65 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/mapsofdoom/">https://mitjafelicijan.github.io/mapsofdoom/</a></td> 80 <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/mapsofdoom/">https://mitjafelicijan.github.io/mapsofdoom/</a></td>
66 </tr> 81 </tr>
67 </tbody> 82 </tbody>
68 </table> 83 </table>
69</section> 84</section>
70{{ end }} 85{{ end }}