fix(clients): récupère les logos distants en local et sert via le CDN

- Télécharge les logos de kaubuntu.com, kaubuntu.re et kbm.gp
- Les place dans src/assets/images/clients/
- Met à jour les JSON FR/EN pour utiliser les chemins locaux
- Applique le filtre cdn dans le template clients.njk
This commit is contained in:
2026-07-08 07:49:39 +04:00
parent 646d3b676f
commit f1a9fa63e0
6 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -8,21 +8,21 @@
"name": "KA UBUNTU", "name": "KA UBUNTU",
"domain": "kaubuntu.com", "domain": "kaubuntu.com",
"url": "https://kaubuntu.com", "url": "https://kaubuntu.com",
"logo": "https://kaubuntu.com/wp-content/uploads/2026/04/logo-ka-ubuntu.png", "logo": "/assets/images/clients/kaubuntu-com.png",
"description": "Pan-Africanist and pro-independence political movement from Réunion. Fighting for the self-determination of Réunion and African unity. \"I am because we are.\"" "description": "Pan-Africanist and pro-independence political movement from Réunion. Fighting for the self-determination of Réunion and African unity. \"I am because we are.\""
}, },
{ {
"name": "KA UBUNTU — Media hub", "name": "KA UBUNTU — Media hub",
"domain": "kaubuntu.re", "domain": "kaubuntu.re",
"url": "https://kaubuntu.re", "url": "https://kaubuntu.re",
"logo": "https://kaubuntu.re/img/logo.png", "logo": "/assets/images/clients/kaubuntu-re.png",
"description": "Centralised media aggregator for Ka Ubuntu: YouTube videos, articles, Instagram and TikTok brought together on a single page. Progressive web application (PWA)." "description": "Centralised media aggregator for Ka Ubuntu: YouTube videos, articles, Instagram and TikTok brought together on a single page. Progressive web application (PWA)."
}, },
{ {
"name": "KBM Ka Pou Nou Bwè é Manjé", "name": "KBM Ka Pou Nou Bwè é Manjé",
"domain": "kbm.gp", "domain": "kbm.gp",
"url": "https://kbm.gp", "url": "https://kbm.gp",
"logo": "https://kbm.gp/images/logo-1024.webp", "logo": "/assets/images/clients/kbm.gp.webp",
"description": "Movement for the emancipation and food sovereignty of the Guadeloupean people. Community radio Radyo Bòkaz, podcasts, lakou and local farming." "description": "Movement for the emancipation and food sovereignty of the Guadeloupean people. Community radio Radyo Bòkaz, podcasts, lakou and local farming."
} }
] ]
+3 -3
View File
@@ -8,21 +8,21 @@
"name": "KA UBUNTU", "name": "KA UBUNTU",
"domain": "kaubuntu.com", "domain": "kaubuntu.com",
"url": "https://kaubuntu.com", "url": "https://kaubuntu.com",
"logo": "https://kaubuntu.com/wp-content/uploads/2026/04/logo-ka-ubuntu.png", "logo": "/assets/images/clients/kaubuntu-com.png",
"description": "Mouvement politique panafricaniste et indépendantiste réunionnais. Lutte pour l'autodétermination de La Réunion et l'unité africaine. \"Je suis parce que nous sommes.\"" "description": "Mouvement politique panafricaniste et indépendantiste réunionnais. Lutte pour l'autodétermination de La Réunion et l'unité africaine. \"Je suis parce que nous sommes.\""
}, },
{ {
"name": "KA UBUNTU — Hub multimédia", "name": "KA UBUNTU — Hub multimédia",
"domain": "kaubuntu.re", "domain": "kaubuntu.re",
"url": "https://kaubuntu.re", "url": "https://kaubuntu.re",
"logo": "https://kaubuntu.re/img/logo.png", "logo": "/assets/images/clients/kaubuntu-re.png",
"description": "Agrégateur multimédia centralisé pour Ka Ubuntu : vidéos YouTube, articles, Instagram et TikTok réunis en une seule page. Application web progressive (PWA)." "description": "Agrégateur multimédia centralisé pour Ka Ubuntu : vidéos YouTube, articles, Instagram et TikTok réunis en une seule page. Application web progressive (PWA)."
}, },
{ {
"name": "KBM Ka Pou Nou Bwè é Manjé", "name": "KBM Ka Pou Nou Bwè é Manjé",
"domain": "kbm.gp", "domain": "kbm.gp",
"url": "https://kbm.gp", "url": "https://kbm.gp",
"logo": "https://kbm.gp/images/logo-1024.webp", "logo": "/assets/images/clients/kbm.gp.webp",
"description": "Mouvement pour l'émancipation et la souveraineté alimentaire du peuple guadeloupéen. Radio communautaire Radyo Bòkaz, podcasts, lakou et agriculture locale." "description": "Mouvement pour l'émancipation et la souveraineté alimentaire du peuple guadeloupéen. Radio communautaire Radyo Bòkaz, podcasts, lakou et agriculture locale."
} }
] ]
+1 -1
View File
@@ -9,7 +9,7 @@
{% for client in t.clients.items %} {% for client in t.clients.items %}
<a href="{{ client.url }}" target="_blank" rel="noopener noreferrer" class="partner-card"> <a href="{{ client.url }}" target="_blank" rel="noopener noreferrer" class="partner-card">
<div class="partner-logo-container"> <div class="partner-logo-container">
<img src="{{ client.logo }}" alt="Logo {{ client.name }}" class="partner-logo"> <img src="{{ client.logo | cdn }}" alt="Logo {{ client.name }}" class="partner-logo">
</div> </div>
<h3>{{ client.name }}</h3> <h3>{{ client.name }}</h3>
<p class="project-domain">{{ client.domain }}</p> <p class="project-domain">{{ client.domain }}</p>
Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB