1{{ template "base.html" . }}
 2
 3{{ define "content" }}
 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
20<section>
21    <h2>Notes / Posts</h2>
22    <ul class="post-list">
23        {{ range .Pages }}
24        {{ if and (not .Draft) (or (eq .Type "note") (eq .Type "post")) }}
25        <li>
26            <time datetime="{{ .Created.Format "2006-01-02" }}" class="static-prefix">{{ .Created.Format "2006-01-02" }}</time>
27            <span title="Note">
28                <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 512 512" style="display: block">
29                    {{ if (eq .Type "note") }}
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"/>
31                    {{ end }}
32                </svg>
33            </span>
34            <span>
35                <a href="{{ .RelPermalink }}">{{ .Title }}</a>
36                <span class="tags">
37                    {{ if .Meta.tags }}
38                    {{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
39                    {{ end }}
40                </span>
41            </span>
42        </li>
43        {{ end }}
44        {{ end }}
45    </ul>
46</section>
47
48<section class="hide-on-mobile">
49    <h2>Tools / Experiments</h2>
50    <table class="normal">
51        <thead>
52            <tr>
53                <th>Title</th>
54                <th></th>
55            </tr>
56        </thead>
57        <tbody>
58            <tr>
59                <td>Visualizations and exploration of binary files</td>
60                <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/binary-visualization/">https://mitjafelicijan.github.io/binary-visualization/</a></td>
61            </tr>
62            <tr>
63                <td>Easy convert between HEX to RGBA</td>
64                <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/hextorgba/">https://mitjafelicijan.github.io/hextorgba/</a></td>
65            </tr>
66            <tr>
67                <td>Unicode symbol explorer</td>
68                <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/symbols/">https://mitjafelicijan.github.io/symbols/</a></td>
69            </tr>
70            <tr>
71                <td>GGUF model list &amp; tools</td>
72                <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/gguf-list/">https://mitjafelicijan.github.io/gguf-list/</a></td>
73            </tr>
74            <tr>
75                <td>Soundscapes board</td>
76                <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/soundscapes/">https://mitjafelicijan.github.io/soundscapes/</a></td>
77            </tr>
78            <tr>
79                <td>Maps of DOOM and other well known WADS</td>
80                <td class="text-right"><a target="_blank" href="https://mitjafelicijan.github.io/mapsofdoom/">https://mitjafelicijan.github.io/mapsofdoom/</a></td>
81            </tr>
82        </tbody>
83    </table>
84</section>
85{{ end }}