diff options
author | Botond Hende <nettingman@gmail.com> | 2024-09-08 01:00:53 +0200 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-09-08 01:00:53 +0200 |
commit | 94ee809f9ec4b7a47fd8c56857eee6cd7e48bfa1 (patch) | |
tree | 8c31d3a4c056c05858f0d1fa90a46f2799174f16 /templates | |
parent | 69f46bd633e3a11ca52ae669c1ccee789ed5eff4 (diff) |
added extra theme
Diffstat (limited to 'templates')
-rw-r--r-- | templates/acknowledgement.html.j2 | 3 | ||||
-rw-r--r-- | templates/sidebar.html.j2 | 8 |
2 files changed, 8 insertions, 3 deletions
diff --git a/templates/acknowledgement.html.j2 b/templates/acknowledgement.html.j2 index 6cb5938..2c11f76 100644 --- a/templates/acknowledgement.html.j2 +++ b/templates/acknowledgement.html.j2 @@ -2,7 +2,7 @@ {% block page_title %}Acknowledgement {{ super() }}{% endblock %} {% block page_title_short %}Acknowledgement{% endblock %} {% block content %} -<h1 class="first-element">Acknowledgement<h1> +<h1 class="first-element">Acknowledgement</h1> <p>Thank you for everyone, who made this blog possible, like...<br> <br> <a href="https://blog.marcsello.com">Marcsello</a> who was kind enough to share his blog source with the world, so I could <del>steal</del> get inspired by it<br> @@ -13,6 +13,7 @@ <a href="https://www.jetbrains.com">Jetbrains</a> for their amazing <a href="https://www.jetbrains.com/lp/mono">font</a> which I use literally everywhere<br> <a href="http://terminal.sexy">terminal.sexy</a> for the cool terminal color template<br> <a href="https://icon-sets.iconify.design">iconify</a> for all the icons<br> +<a href="https://isotropic.co/tool/hex-color-to-css-filter/">Isotropic</a> for their hex to css filter converter<br> <br> ... and last but not least, You dear Reader!</p> {% endblock %}
\ No newline at end of file diff --git a/templates/sidebar.html.j2 b/templates/sidebar.html.j2 index a58c2cb..ef89489 100644 --- a/templates/sidebar.html.j2 +++ b/templates/sidebar.html.j2 @@ -25,15 +25,19 @@ Sometimes I touch upon some more artistic stuff, but mostly just to amuse myself <p>ls <a href="/tags">~/tags/</a></p> <p>{% for tag in site.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>~/themes/</p> +<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-celestia.sh</span> + <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="/feed.xml" class="icon-text"> <img src="/assets/image/rss.svg" class="svg-icon" /> |