aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html94
1 files changed, 58 insertions, 36 deletions
diff --git a/templates/index.html b/templates/index.html
index ec29351..ce656ff 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,45 +1,67 @@
1{{ template "base.html" . }} 1{{ template "base.html" . }}
2 2
3{{ define "content" }} 3{{ define "content" }}
4<div>
5 <h2>Visualizations and exploration of binary files</h2>
6 <a href="https://mitjafelicijan.github.io/binary-visualization/" target="_blank">
7 <img src="/assets/general/trigraphs.gif">
8 </a>
9</div>
10 4
11<section class="flow-two-column"> 5<section>
12 <h1>Notes, post and other stuff</h1> 6 <h2>Notes</h2>
13 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list"> 7 <table>
14 {{ range .Pages }} 8 <thead>
15 {{ if and (not .Draft) (or (eq .Type "note") (eq .Type "post")) }} 9 <tr>
16 <li> 10 <th>Date</th>
17 {{ if .Meta.tags }} 11 <th>Title</th>
18 <div class="tags"> 12 <th></th>
19 {{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }} 13 </tr>
20 </div> 14 </thead>
15 <tbody>
16 {{ range .Pages }}
17 {{ if and (not .Draft) (eq .Type "note") }}
18 <tr>
19 <td><time datetime="{{ .Created.Format "2006-01-02" }}">{{ .Created.Format "2006-01-02" }}</time></td>
20 <td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
21 <td class="tags">
22 {{ if .Meta.tags }}
23 {{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
24 {{ end }}
25 </td>
26 </tr>
21 {{ end }} 27 {{ end }}
22 <a href="{{ .RelPermalink }}">{{ .Title }}</a>
23 </li>
24 {{ end }} 28 {{ end }}
25 {{ end }} 29 </tbody>
26 </ul> 30 </table>
27</section> 31</section>
28 32
29<div> 33<section>
30 <h2>Small side projects I work/worked on</h2> 34 <h2>Posts</h2>
31 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Side projects"> 35 <table>
32 <meta itemprop="name" content="Side projects"> 36 <thead>
33 <li role="listitem"><a href="https://github.com/mitjafelicijan/makext" target="_blank">makext</a> — QOL Extensions for GNU Make</li> 37 <tr>
34 <li role="listitem"><a href="https://github.com/mitjafelicijan/binary-visualization" target="_blank">binary-visualization</a> — Visualizations and exploration of binary files</li> 38 <th>Date</th>
35 <li role="listitem"><a href="https://github.com/mitjafelicijan/p9tree" target="_blank">p9tree</a> — Tree utility for 9front/Plan9 operating systems</li> 39 <th>Title</th>
36 <li role="listitem"><a href="https://github.com/mitjafelicijan/i3blocks" target="_blank">i3blocks</a> — Minimal i3blocks indicators</li> 40 <th></th>
37 <li role="listitem"><a href="https://github.com/mitjafelicijan/cord.h" target="_blank">cord.h</a> — Small C library for handling strings</li> 41 </tr>
38 <li role="listitem"><a href="https://github.com/mitjafelicijan/mprogress" target="_blank">mprogress</a> — Tiny utility that displays progress bar in terminal</li> 42 </thead>
39 <li role="listitem"><a href="https://github.com/mitjafelicijan/qli" target="_blank">qli</a> — Quantum Lorem Ipsum generator for command line</li> 43 <tbody>
40 <li role="listitem"><a href="https://github.com/mitjafelicijan/journalctl-proxy" target="_blank">journalctl-proxy</a> — Exposes your systemd logs to web via web interface</li> 44 {{ range .Pages }}
41 <li role="listitem"><a href="https://github.com/mitjafelicijan/redis-marshal" target="_blank">redis-marshal</a> — Lightweight Redis UI tool</li> 45 {{ if and (not .Draft) (eq .Type "post") }}
42 <li role="listitem"><a href="https://github.com/mitjafelicijan/dna-encoding" target="_blank">dna-encoding</a> — Tools for encoding files to DNA sequences</li> 46 <tr>
43 </ul> 47 <td><time datetime="{{ .Created.Format "2006-01-02" }}">{{ .Created.Format "2006-01-02" }}</time></td>
44</div> 48 <td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
49 <td class="tags">
50 {{ if .Meta.tags }}
51 {{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
52 {{ end }}
53 </td>
54 </tr>
55 {{ end }}
56 {{ end }}
57 </tbody>
58 </table>
59</section>
60
61<section>
62 <h2>Visualizations and exploration of binary files</h2>
63 <a href="https://mitjafelicijan.github.io/binary-visualization/" target="_blank">
64 <img src="/assets/general/trigraphs.gif" class="no-border">
65 </a>
66</section>
45{{ end }} 67{{ end }}