aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-06-18 20:57:08 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-06-18 20:57:08 +0200
commite739c3bb76ec9487bfd614be4b3d1e01c4f7a454 (patch)
treec7a49477a91450c2e0a88e079feb5857aaff7b06 /templates/index.html
parent45b4b1f3d584081067cbacb9120dcea444aac043 (diff)
downloadmitjafelicijan.com-e739c3bb76ec9487bfd614be4b3d1e01c4f7a454.tar.gz
Simplified template
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html19
1 files changed, 11 insertions, 8 deletions
diff --git a/templates/index.html b/templates/index.html
index e36d83b..e4e93c6 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -13,7 +13,8 @@
13 13
14<section> 14<section>
15 <h2>More long form, ramblings etc</h2> 15 <h2>More long form, ramblings etc</h2>
16 <ul> 16 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="More long form, ramblings etc">
17 <meta itemprop="name" content="More long form, ramblings etc">
17 {{ range .Pages }} 18 {{ range .Pages }}
18 {{ if and (eq .Type "post") (not .Draft) }} 19 {{ if and (eq .Type "post") (not .Draft) }}
19 <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> 20 <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
@@ -24,20 +25,22 @@
24 25
25<section> 26<section>
26 <h2>Notes?! Maybe useful</h2> 27 <h2>Notes?! Maybe useful</h2>
27 <ul> 28 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Notes?! Maybe useful">
28 {{ range .Pages }} 29 <meta itemprop="name" content="Notes?! Maybe useful">
29 {{ if and (eq .Type "note") (not .Draft) }} 30 {{ range .Pages }}
30 <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> 31 {{ if and (eq .Type "note") (not .Draft) }}
32 <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
33 {{ end }}
31 {{ end }} 34 {{ end }}
32 {{ end }}
33 </ul> 35 </ul>
34</section> 36</section>
35 37
36<section> 38<section>
37 <h2>Small side projects I work/worked on</h2> 39 <h2>Small side projects I work/worked on</h2>
38 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Side projects" class="list"> 40 <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Side projects">
39 <meta itemprop="name" content="Side projects"> 41 <meta itemprop="name" content="Side projects">
40 <li role="listitem"><a href="https://github.com/mitjafelicijan/binary-visualization" target="_blank">binary-visualization </a> — Visualizations and exploration of binary files</li> 42 <li role="listitem"><a href="https://github.com/mitjafelicijan/makext" target="_blank">makext</a> — QOL Extensions for GNU Make</li>
43 <li role="listitem"><a href="https://github.com/mitjafelicijan/binary-visualization" target="_blank">binary-visualization</a> — Visualizations and exploration of binary files</li>
41 <li role="listitem"><a href="https://github.com/mitjafelicijan/p9tree" target="_blank">p9tree</a> — Tree utility for 9front/Plan9 operating systems</li> 44 <li role="listitem"><a href="https://github.com/mitjafelicijan/p9tree" target="_blank">p9tree</a> — Tree utility for 9front/Plan9 operating systems</li>
42 <li role="listitem"><a href="https://github.com/mitjafelicijan/errand" target="_blank">errand</a> — Task runner for the command line</li> 45 <li role="listitem"><a href="https://github.com/mitjafelicijan/errand" target="_blank">errand</a> — Task runner for the command line</li>
43 <li role="listitem"><a href="https://github.com/mitjafelicijan/i3blocks" target="_blank">i3blocks</a> — Minimal i3blocks indicators</li> 46 <li role="listitem"><a href="https://github.com/mitjafelicijan/i3blocks" target="_blank">i3blocks</a> — Minimal i3blocks indicators</li>