diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-01 22:54:27 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-01 22:54:27 +0100 |
| commit | 2417a6b7603524dc5cd30d29b153f91024b9443d (patch) | |
| tree | 9be5ea8e5baba96dd9159217da6badf6157fb595 /templates/index.html | |
| parent | 89ba3497f07a8ea43d209b583f39fcc286acc923 (diff) | |
| download | mitjafelicijan.com-2417a6b7603524dc5cd30d29b153f91024b9443d.tar.gz | |
Move to Jekyll
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index 67ddd0c..0000000 --- a/templates/index.html +++ /dev/null | |||
| @@ -1,40 +0,0 @@ | |||
| 1 | {{ template "base.html" . }} | ||
| 2 | |||
| 3 | {{ define "content" }} | ||
| 4 | <div> | ||
| 5 | <p>{{ .Config.Description }}</p> | ||
| 6 | |||
| 7 | <h2><a name="posts"></a>More long form, ramblings etc</h2> | ||
| 8 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Articles" class="list"> | ||
| 9 | <meta itemprop="name" content="Article list"> | ||
| 10 | {{ range .Pages }} | ||
| 11 | {{ if eq .Type "post" }} | ||
| 12 | <li role="listitem"><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li> | ||
| 13 | {{ end }} | ||
| 14 | {{ end }} | ||
| 15 | </ul> | ||
| 16 | |||
| 17 | <h2><a name="notes"></a>Notes?! Maybe useful</h2> | ||
| 18 | <h2></h2> | ||
| 19 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Notes" class="list"> | ||
| 20 | <meta itemprop="name" content="Note list"> | ||
| 21 | {{ range .Pages }} | ||
| 22 | {{ if eq .Type "note" }} | ||
| 23 | <li role="listitem"><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li> | ||
| 24 | {{ end }} | ||
| 25 | {{ end }} | ||
| 26 | </ul> | ||
| 27 | |||
| 28 | <h2><a name="sideprojects"></a>Side projects I work/worked on</h2> | ||
| 29 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Side projects" class="list"> | ||
| 30 | <meta itemprop="name" content="Side projects"> | ||
| 31 | <li role="listitem"><a href="https://git.mitjafelicijan.com/cord.h.git/" target="_blank">cord.h</a> — Small C library for handling strings</li> | ||
| 32 | <li role="listitem"><a href="https://git.mitjafelicijan.com/mprogress.git/" target="_blank">mprogress</a> — Tiny utility that displays progress bar in terminal</li> | ||
| 33 | <li role="listitem"><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank">journalctl-proxy</a> — Exposes your systemd logs to web via web interface</li> | ||
| 34 | <li role="listitem"><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank">redis-marshal</a> — Lightweight Redis data exploration tool</li> | ||
| 35 | <li role="listitem"><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank">vertex</a> — Create mock API's and add basic logic to simplify prototyping</li> | ||
| 36 | <li role="listitem"><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank">dna-encoding</a> — Tools for encoding files to DNA sequence</li> | ||
| 37 | <li role="listitem"><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a> — Minimal configuration reverse proxy</li> | ||
| 38 | </ul> | ||
| 39 | </div> | ||
| 40 | {{ end }} | ||
