2 Commits
Author SHA1 Message Date
cedric 46a039d2d2 fix(contact/footer): retire X (Twitter) et TikTok des contacts et du footer
- Supprime X et TikTok des JSON de contact (FR/EN)
- Retire les liens X et TikTok du footer
- Supprime les branches de rendu d'icônes X et TikTok dans contact.njk
2026-07-08 23:27:19 +04:00
cedric c27f37f979 fix(contact/footer): retire Stoat des contacts et du footer
- Supprime l'entrée Stoat des JSON de contact (FR/EN)
- Retire le lien Stoat du footer
- Supprime la branche de rendu d'icône Stoat dans contact.njk
2026-07-08 23:16:27 +04:00
4 changed files with 4 additions and 25 deletions
+2 -5
View File
@@ -12,16 +12,13 @@
{ {
"title": "💬 Social networks", "title": "💬 Social networks",
"links": [ "links": [
{ "text": "Telegram", "url": "https://t.me/OrganisationKA" }, { "text": "Telegram", "url": "https://t.me/OrganisationKA" }
{ "text": "X (Twitter)", "url": "https://x.com/OrganisationKA" },
{ "text": "TikTok", "url": "https://www.tiktok.com/@organisationka" }
] ]
}, },
{ {
"title": "💬 Community", "title": "💬 Community",
"links": [ "links": [
{ "text": "Discord", "url": "https://discord.gg/DPvUCA8dD" }, { "text": "Discord", "url": "https://discord.gg/DPvUCA8dD" }
{ "text": "Stoat", "url": "https://stt.gg/FzqPKhbG" }
] ]
}, },
{ {
+2 -5
View File
@@ -12,16 +12,13 @@
{ {
"title": "💬 Réseaux sociaux", "title": "💬 Réseaux sociaux",
"links": [ "links": [
{ "text": "Telegram", "url": "https://t.me/OrganisationKA" }, { "text": "Telegram", "url": "https://t.me/OrganisationKA" }
{ "text": "X (Twitter)", "url": "https://x.com/OrganisationKA" },
{ "text": "TikTok", "url": "https://www.tiktok.com/@organisationka" }
] ]
}, },
{ {
"title": "💬 Communauté", "title": "💬 Communauté",
"links": [ "links": [
{ "text": "Discord", "url": "https://discord.gg/DPvUCA8dD" }, { "text": "Discord", "url": "https://discord.gg/DPvUCA8dD" }
{ "text": "Stoat", "url": "https://stt.gg/FzqPKhbG" }
] ]
}, },
{ {
-6
View File
@@ -16,14 +16,8 @@
{% include "icons/whatsapp.svg" %} {% include "icons/whatsapp.svg" %}
{% elif 'telegram' in lname %} {% elif 'telegram' in lname %}
{% include "icons/telegram.svg" %} {% include "icons/telegram.svg" %}
{% elif 'twitter' in lname or 'x (' in lname %}
{% include "icons/x.svg" %}
{% elif 'tiktok' in lname %}
{% include "icons/tiktok.svg" %}
{% elif 'discord' in lname %} {% elif 'discord' in lname %}
{% include "icons/discord.svg" %} {% include "icons/discord.svg" %}
{% elif 'stoat' in lname %}
{% include "icons/stoat.svg" %}
{% elif 'labola' in lname or 'gitea' in lname %} {% elif 'labola' in lname or 'gitea' in lname %}
{% include "icons/gitea.svg" %} {% include "icons/gitea.svg" %}
{% endif %} {% endif %}
-9
View File
@@ -22,18 +22,9 @@
<a href="https://t.me/OrganisationKA" target="_blank" rel="noopener noreferrer" title="Telegram" class="social-link"> <a href="https://t.me/OrganisationKA" target="_blank" rel="noopener noreferrer" title="Telegram" class="social-link">
{% include "icons/telegram.svg" %} {% include "icons/telegram.svg" %}
</a> </a>
<a href="https://x.com/OrganisationKA" target="_blank" rel="noopener noreferrer" title="X" class="social-link">
{% include "icons/x.svg" %}
</a>
<a href="https://www.tiktok.com/@organisationka" target="_blank" rel="noopener noreferrer" title="TikTok" class="social-link">
{% include "icons/tiktok.svg" %}
</a>
<a href="https://discord.gg/DPvUCA8dD" target="_blank" rel="noopener noreferrer" title="Discord" class="social-link"> <a href="https://discord.gg/DPvUCA8dD" target="_blank" rel="noopener noreferrer" title="Discord" class="social-link">
{% include "icons/discord.svg" %} {% include "icons/discord.svg" %}
</a> </a>
<a href="https://stt.gg/FzqPKhbG" target="_blank" rel="noopener noreferrer" title="Stoat" class="social-link">
{% include "icons/stoat.svg" %}
</a>
<a href="https://labola.o-k-i.net/" target="_blank" rel="noopener noreferrer" title="Labola (Gitea)" class="social-link"> <a href="https://labola.o-k-i.net/" target="_blank" rel="noopener noreferrer" title="Labola (Gitea)" class="social-link">
{% include "icons/gitea.svg" %} {% include "icons/gitea.svg" %}
</a> </a>