diff options
author | Botond Hende <nettingman@gmail.com> | 2024-09-04 20:05:51 +0200 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-09-04 20:05:51 +0200 |
commit | bea80928f694671010bc99493d31879df7d42836 (patch) | |
tree | afb71282df8f01ce4b2dd87a292febe7ad8e3537 /templates/sidebar.html.j2 |
initial commit
Diffstat (limited to 'templates/sidebar.html.j2')
-rw-r--r-- | templates/sidebar.html.j2 | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/templates/sidebar.html.j2 b/templates/sidebar.html.j2 new file mode 100644 index 0000000..2c75a8c --- /dev/null +++ b/templates/sidebar.html.j2 @@ -0,0 +1,35 @@ +<div class="sidebar-spacing"></div> +<h3 class="magenta first-element">About me</h3> +<p>I'm a game developer by occupation and a computer enthusiast by hobby. +I love learning about and working on anything related to computers or geek stuff, +although I consider myself only a passionate greenhorn. +Sometimes I touch upon some more artistic stuff, but mostly just to amuse myself.</p> +<div class="icon-text"> +<p>btw I use arch</p> +<img src="/assets/image/arch.svg" class="svg-icon" /> +</div> +<h3 class="magenta">Stuff I do</h3> +<a href="https://wazul.moe" class="icon-text"> +<img src="/assets/image/website.svg" class="svg-icon" /> +<span>My website</span> +</a> +<a href="https://git.wazul.moe" class="icon-text"> +<img src="/assets/image/git.svg" class="svg-icon" /> +<span>Git repositories</span> +</a> +<h3 class="magenta">Top tags</h3> +<p>{% for tag in site.top_tags %}<a href="/tags/{{ tag }}.html">{{ tag }}/</a>{% if not loop.last %} {% endif %}{% endfor %}</p> +<p>more: cd <a href="/tags">~/tags</a></p> +<h3 class="magenta">Never miss a post</h3> +<a href="/feed.xml" class="icon-text"> +<img src="/assets/image/rss.svg" class="svg-icon" /> +<span>RSS feed</span> +</a> +<h3 class="magenta">Contact me at</h3> +<a href="mailto:contact@wazul.moe" class="icon-text"> +<img src="/assets/image/email.svg" class="svg-icon" /> +<span>contact@wazul.moe</span> +</a> +<p>especially if you find some typos or bugs on the page</p> +<h3 class="magenta">Thank you</h3> +<p class="last-element">for <a href="/acknowledgement.html">everyone</a> who made this blog possible</p> |