From a007d29a9f95f23f66e75b6c108963e669bf3376 Mon Sep 17 00:00:00 2001 From: Tixie Date: Fri, 7 Jun 2024 19:03:09 +0200 Subject: [PATCH 1/4] =?UTF-8?q?CI:=20Ajout=20d'une=20task=20pour=20d=C3=A9?= =?UTF-8?q?sindexer=20le=20site=20si=20c'est=20un=20d=C3=A9ploiement=20en?= =?UTF-8?q?=20preprod?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pour éviter que les moteurs de recherche flag du duplicate content parce qu'on a plusieurs sites identiques en ligne --- .woodpecker.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.woodpecker.yaml b/.woodpecker.yaml index 1a962d9..dce8056 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -19,6 +19,14 @@ steps: commands: - '[ -f static/robots.txt ] && echo "Disallow: /*" >> static/robots.txt' + - name: disable SEO indexing (on preprod only) + when: + event: [push, pull_request] + branch: preprod + image: debian:12 # Same as previous step to not have to download 2 images, but it could be any linux + commands: + - [ -f static/robots.txt ] && echo "Disallow: /*" >> static/robots.txt + - name: upload (preprod) when: event: [push, pull_request] -- 2.43.4 From 821f38c1129de2e4da95bb179d5bfeab36519b94 Mon Sep 17 00:00:00 2001 From: Tixie Date: Fri, 7 Jun 2024 14:15:40 +0200 Subject: [PATCH 2/4] =?UTF-8?q?Am=C3=A9liorer=20l'affordance=20des=20liens?= =?UTF-8?q?=20vers=20les=20services?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/css/home.css | 2 ++ static/css/layout.css | 3 +++ 2 files changed, 5 insertions(+) diff --git a/static/css/home.css b/static/css/home.css index 14c753a..9053807 100644 --- a/static/css/home.css +++ b/static/css/home.css @@ -65,6 +65,8 @@ section#liste_outils { section#liste_outils > a > div > p { text-align: center; + text-decoration: underline; + color: darkgreen; } section#liste_outils > a { diff --git a/static/css/layout.css b/static/css/layout.css index c83bef1..ff73100 100644 --- a/static/css/layout.css +++ b/static/css/layout.css @@ -271,4 +271,7 @@ pre.center > a { div#ronce, #coop, #autonomie, #solidarite, #liberte, nav#menu, div#rennes, div#orsay { border-color: var(--txt-night); } + section#liste_outils > a > div > p:nth-child(n){ + color: var(--txt-night); + } } -- 2.43.4 From b75294cc96ab1be58c7b1d4aa1a5bc8aeb1318a6 Mon Sep 17 00:00:00 2001 From: Tixie Date: Sun, 9 Jun 2024 17:56:43 +0200 Subject: [PATCH 3/4] highlight contact infos --- static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.html b/static/index.html index 0ff0752..094bbc0 100644 --- a/static/index.html +++ b/static/index.html @@ -861,7 +861,7 @@

Faisons connaissance

L'accès à nos services est à prix libre. Nous estimons leur coût à 15€/an/compte pour leur maintien en fonctionnement et recommandons le double pour permettre à l'association de se développer. Il est conditionné par les ressources disponibles, à la fois matérielles et humaines.

-

Pour accéder à nos services ou simplement discuter avec nous, écrivez à coucou[@]deuxfleurs.fr, rejoignez-nous sur le salon Matrix #deuxfleurs:deuxfleurs.fr ou rencontrez-nous à :

+

Pour accéder à nos services ou simplement discuter avec nous, écrivez à coucou[@]deuxfleurs.fr, rejoignez-nous sur le salon Matrix #deuxfleurs:deuxfleurs.fr ou rencontrez-nous à :

    -- 2.43.4 From 4978b26ef612d2e23ebcc9fff628890a160adebd Mon Sep 17 00:00:00 2001 From: Tixie Date: Sun, 9 Jun 2024 18:01:47 +0200 Subject: [PATCH 4/4] =?UTF-8?q?fix=20yaml=20de=20la=20task=20pour=20d?= =?UTF-8?q?=C3=A9sindexer=20le=20site=20si=20c'est=20un=20d=C3=A9ploiement?= =?UTF-8?q?=20en=20preprod?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .woodpecker.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.woodpecker.yaml b/.woodpecker.yaml index dce8056..1a962d9 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -19,14 +19,6 @@ steps: commands: - '[ -f static/robots.txt ] && echo "Disallow: /*" >> static/robots.txt' - - name: disable SEO indexing (on preprod only) - when: - event: [push, pull_request] - branch: preprod - image: debian:12 # Same as previous step to not have to download 2 images, but it could be any linux - commands: - - [ -f static/robots.txt ] && echo "Disallow: /*" >> static/robots.txt - - name: upload (preprod) when: event: [push, pull_request] -- 2.43.4