Compare commits

...

10 Commits

10 changed files with 7 additions and 7 deletions

View File

@@ -242,11 +242,11 @@ email = "emxveV9saW51eEB6bGludXgucnU="
encode_plaintext_email = true
socials = [
{ name = "sharkey", url = "https://zlinux.ru/@zloy_linux", icon = "misskey" },
{ name = "sharkey", url = "https://zlinux.ru/@zloy_linux", icon = "sharkey" },
{ name = "telegram", url = "https://t.me/#", icon = "telegram" },
{ name = "peertube", url = "https://video.zlinux.ru/a/zloy_linux/video-channels", icon = "peertube" },
# { name = "youtube", url = "https://youtube.com/#", icon = "youtube" },
{ name = "pixelfed", url = "https://pixelfed.social/zloy_linuxoid", icon = "pixelfed" },
{ name = "pixelfed", url = "https://pixelfed.social/zloy_linuxoid", icon = "pixelfeed" },
]
footer_menu = [

View File

@@ -70,12 +70,12 @@ footer nav {
.social {
&:hover {
& > img {
filter: invert(0);
filter: invert(1);
}
}
& > img {
filter: invert(1);
filter: invert(0);
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@@ -24,7 +24,7 @@
{%- if should_show_feed -%}
<li>
<a class="nav-links no-hover-padding social" rel="{{ rel_attributes }}" {{ blank_target }} href="{{ get_url(path=feed_url, lang=lang, trailing_slash=false) | safe }}">
<img loading="lazy" alt="feed" title="feed" src="{{ get_url(path='/social_icons/rss.svg') }}">
<img loading="lazy" alt="feed" title="feed" src="{{ get_url(path='/social_icons/rss.png') }}">
</a>
</li>
{%- endif -%}
@@ -51,7 +51,7 @@
{%- else -%}
<a class="nav-links no-hover-padding social" href="mailto:{{ config.extra.email | safe }}">
{%- endif -%}
<img loading="lazy" alt="email" title="email" src="{{ get_url(path='social_icons/email.svg') }}">
<img loading="lazy" alt="email" title="email" src="{{ get_url(path='social_icons/email.png') }}">
</a>
</li>
{%- endif -%}
@@ -60,7 +60,7 @@
{% for social in config.extra.socials %}
<li>
<a class="nav-links no-hover-padding social" rel="{{ rel_attributes }} me" {{ blank_target }} href="{{ social.url | safe }}">
<img loading="lazy" alt="{{ social.name }}" title="{{ social.name }}" src="{{ get_url(path='social_icons/' ~ social.icon ~ '.svg') }}">
<img loading="lazy" alt="{{ social.name }}" title="{{ social.name }}" src="{{ get_url(path='social_icons/' ~ social.icon ~ '.png') }}">
</a>
</li>
{% endfor %}