diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/base.html | 2 | ||||
| -rw-r--r-- | templates/index.html | 26 |
2 files changed, 14 insertions, 14 deletions
diff --git a/templates/base.html b/templates/base.html index 4c43811..17f8fcd 100644 --- a/templates/base.html +++ b/templates/base.html | |||
| @@ -183,7 +183,7 @@ | |||
| 183 | <body> | 183 | <body> |
| 184 | 184 | ||
| 185 | <header> | 185 | <header> |
| 186 | <nav class="main" itemscope itemtype="http://schema.org/SiteNavigationElement" role="toolbar"> | 186 | <nav class="main" itemscope itemtype="http://schema.org/SiteNavigationElement" role="navigation" aria-label="Main navigation"> |
| 187 | <a href="/">Home</a> | 187 | <a href="/">Home</a> |
| 188 | <a href="/#posts">Posts</a> | 188 | <a href="/#posts">Posts</a> |
| 189 | <a href="/#notes">Notes</a> | 189 | <a href="/#notes">Notes</a> |
diff --git a/templates/index.html b/templates/index.html index 9717a67..67ddd0c 100644 --- a/templates/index.html +++ b/templates/index.html | |||
| @@ -5,36 +5,36 @@ | |||
| 5 | <p>{{ .Config.Description }}</p> | 5 | <p>{{ .Config.Description }}</p> |
| 6 | 6 | ||
| 7 | <h2><a name="posts"></a>More long form, ramblings etc</h2> | 7 | <h2><a name="posts"></a>More long form, ramblings etc</h2> |
| 8 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list"> | 8 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Articles" class="list"> |
| 9 | <meta itemprop="name" content="Article list"> | 9 | <meta itemprop="name" content="Article list"> |
| 10 | {{ range .Pages }} | 10 | {{ range .Pages }} |
| 11 | {{ if eq .Type "post" }} | 11 | {{ if eq .Type "post" }} |
| 12 | <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li> | 12 | <li role="listitem"><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li> |
| 13 | {{ end }} | 13 | {{ end }} |
| 14 | {{ end }} | 14 | {{ end }} |
| 15 | </ul> | 15 | </ul> |
| 16 | 16 | ||
| 17 | <h2><a name="notes"></a>Notes?! Maybe useful</h2> | 17 | <h2><a name="notes"></a>Notes?! Maybe useful</h2> |
| 18 | <h2></h2> | 18 | <h2></h2> |
| 19 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list"> | 19 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Notes" class="list"> |
| 20 | <meta itemprop="name" content="Note list"> | 20 | <meta itemprop="name" content="Note list"> |
| 21 | {{ range .Pages }} | 21 | {{ range .Pages }} |
| 22 | {{ if eq .Type "note" }} | 22 | {{ if eq .Type "note" }} |
| 23 | <li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li> | 23 | <li role="listitem"><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li> |
| 24 | {{ end }} | 24 | {{ end }} |
| 25 | {{ end }} | 25 | {{ end }} |
| 26 | </ul> | 26 | </ul> |
| 27 | 27 | ||
| 28 | <h2><a name="sideprojects"></a>Side projects I work/worked on</h2> | 28 | <h2><a name="sideprojects"></a>Side projects I work/worked on</h2> |
| 29 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" class="list"> | 29 | <ul itemscope itemtype="https://schema.org/SiteNavigationElement" role="list" aria-label="Side projects" class="list"> |
| 30 | <meta itemprop="name" content="Note list"> | 30 | <meta itemprop="name" content="Side projects"> |
| 31 | <li><a href="https://git.mitjafelicijan.com/cord.h.git/" target="_blank">cord.h</a> — Small C library for handling strings</li> | 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><a href="https://git.mitjafelicijan.com/mprogress.git/" target="_blank">mprogress</a> — Tiny utility that displays progress bar in terminal</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><a href="https://git.mitjafelicijan.com/journalctl-proxy.git/" target="_blank">journalctl-proxy</a> — Exposes your systemd logs to web via web interface</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><a href="https://git.mitjafelicijan.com/redis-marshal.git/" target="_blank">redis-marshal</a> — Lightweight Redis data exploration tool</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><a href="https://git.mitjafelicijan.com/vertex.git/" target="_blank">vertex</a> — Create mock API's and add basic logic to simplify prototyping</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><a href="https://git.mitjafelicijan.com/dna-encoding.git/" target="_blank">dna-encoding</a> — Tools for encoding files to DNA sequence</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><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a> — Minimal configuration reverse proxy</li> | 37 | <li role="listitem"><a href="https://git.mitjafelicijan.com/scarecrow.git/" target="_blank">scarecrow</a> — Minimal configuration reverse proxy</li> |
| 38 | </ul> | 38 | </ul> |
| 39 | </div> | 39 | </div> |
| 40 | {{ end }} | 40 | {{ end }} |
