summaryrefslogtreecommitdiff
path: root/blog/templates/blog_sidebar.html.j2
diff options
context:
space:
mode:
authorBotond Hende <contact@wazul.moe>2026-05-08 17:21:46 +0200
committerBotond Hende <contact@wazul.moe>2026-05-08 17:21:46 +0200
commit2821c71cdbe255d25d983924206b1736bda0e042 (patch)
treeb974f1edc381c77802679f88b71e4842f9781f3f /blog/templates/blog_sidebar.html.j2
parentced644eb0185c6940e660c4c2279c6bb4f209900 (diff)
renamed index to root on navbar
Diffstat (limited to 'blog/templates/blog_sidebar.html.j2')
-rw-r--r--blog/templates/blog_sidebar.html.j263
1 files changed, 63 insertions, 0 deletions
diff --git a/blog/templates/blog_sidebar.html.j2 b/blog/templates/blog_sidebar.html.j2
new file mode 100644
index 0000000..d5b0566
--- /dev/null
+++ b/blog/templates/blog_sidebar.html.j2
@@ -0,0 +1,63 @@
+<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">My other thingies</h3>
+<a href="{{ site.main_url }}" class="icon-text" target="_blank">
+<img src="/assets/image/website.svg" class="svg-icon filter-yellow" />
+<span>Website</span>
+</a>
+<a href="{{ site.comic_url }}" class="icon-text" target="_blank">
+<img src="/assets/image/pencil.svg" class="svg-icon filter-yellow" />
+<span>Comics</span>
+</a>
+<a href="https://cyberspace.online/wazul" class="icon-text" target="_blank">
+<img src="/assets/image/chip.svg" class="svg-icon filter-yellow" />
+<span>Cyberspace</span>
+</a>
+<a href="https://mastodon.gamedev.place/@wazul" class="icon-text" target="_blank">
+<img src="/assets/image/mastodon.svg" class="svg-icon" />
+<span>Mastodon</span>
+</a>
+<a href="{{ site.git_url }}" class="icon-text" target="_blank">
+<img src="/assets/image/git.svg" class="svg-icon" />
+<span>Git repositories</span>
+</a>
+<h3 class="magenta">Top tags</h3>
+<p>ls <a href="/tags">~/tags/</a></p>
+<p>{% for tag in blog.top_tags %}<a href="/tags/{{ tag }}.html">{{ tag }}/</a>{% if not loop.last %} {% endif %}{% endfor %}</p>
+<h3 class="magenta">I want different colors</h3>
+<p>ls ~/themes/ <a class="theme-extender" href="javascript:void(0);" onclick="setThemeExtend()">-A</a></p>
+<a href="javascript:void(0);" class="icon-text theme-selector-light" onclick="setTheme('light')">
+ <img src="/assets/image/sun.svg" class="svg-icon" />
+ <span>sweet-celestial.sh</span>
+</a>
+<a href="javascript:void(0);" class="icon-text theme-selector-dark" onclick="setTheme('dark')">
+ <img src="/assets/image/moon.svg" class="svg-icon" />
+ <span>luna-eclipsed.sh</span>
+</a>
+<a href="javascript:void(0);" class="icon-text theme-selector-pink theme-extender-target" onclick="setTheme('pink')">
+ <img src="/assets/image/balloon.svg" class="svg-icon" />
+ <span>.pinky-swear.sh</span>
+</a>
+<h3 class="magenta">Never miss a post</h3>
+<a href="/{{ site.rss_filename }}" 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:{{ site.email }}" class="icon-text">
+<img src="/assets/image/email.svg" class="svg-icon filter-yellow" />
+<span>{{ site.email }}</span>
+</a>
+<p>especially if you find some typos or bugs on the page</p>
+<h3 class="magenta">Thank you</h3>
+<p>for <a href="/acknowledgement.html">everyone</a> who made this blog possible</p>
+<h3 class="magenta">How It's Made</h3>
+<p class="last-element">This blog is open source, <a href="{{ site.git_url }}/website" target="_blank">check it out!</a></p>