Modifications demandées

This commit is contained in:
Arnaud Delcasse
2026-01-08 17:39:00 +01:00
parent 328faf1a6f
commit c3231632ac
10 changed files with 19 additions and 5 deletions

Binary file not shown.

View File

@@ -5,6 +5,7 @@ menu:
main:
weight: 2
etapesTitle: "Une démarche simple et pratique"
depliantLink: "depliant_covoiturage.pdf"
---
Aidez une personne de votre territoire sans solution de transport pour un trajet ponctuel.

View File

@@ -4,4 +4,6 @@ layout: "engagez-votre-entreprise"
menu:
main:
weight: 3
depliantLink: "depliant_entreprises.pdf"
video: "videos/capsule_entreprises.mp4"
---

View File

@@ -9,6 +9,8 @@ savoirPlusLinks:
url: "https://lebimsa.fr/l-actu-des-territoires/mobilite-en-haute-loire-la-solution-du-covoiturage/"
- text: "Découvrez l'interview de Willy Guieau, Directeur opérationnel de la Maison de la Mobilité Solidaire de Haute-Loire"
url: "https://www.linkedin.com/pulse/maison-de-la-mobilit%C3%A9-solidaire-haute-loire-humains-%C3%A0-coeur-bw18e/"
- text: "La Maison de la mobilité solidaire Haute-Loire bien implantée dans le territoire"
url: "https://www.auvergnerhonealpes-ee.fr/annuaires/actualites/detail/maison-de-la-mobilite-solidaire-haute-loire-bien-implantee-dans-le-territoire"
---
La Maison de la Mobilité Solidaire Haute-Loire est un projet porté par les associations FIT, Solidarauto43 et FACE43, avec pour missions :

View File

@@ -156,6 +156,8 @@ collections:
- { name: title, label: "Titre", widget: string }
- { name: headline, label: "Accroche", widget: string }
- { name: etapesTitle, label: "Titre section étapes", widget: string, required: false }
- { name: video, label: "Vidéo", widget: string, required: false, hint: "Chemin vers la vidéo (ex: videos/capsule_covoiturage.mp4)" }
- { name: depliantLink, label: "Lien dépliant", widget: string, required: false, hint: "Chemin vers le PDF du dépliant (ex: depliant_covoiturage.pdf)" }
- { name: body, label: "Contenu", widget: markdown }
- name: prise-de-contact
label: "Étape : Prise de contact"
@@ -205,6 +207,8 @@ collections:
- { name: title, label: "Titre", widget: string }
- { name: headline, label: "Accroche", widget: string }
- { name: subtitle, label: "Sous-titre engagements", widget: string, required: false }
- { name: video, label: "Vidéo", widget: string, required: false, hint: "Chemin vers la vidéo (ex: videos/capsule_entreprises.mp4)" }
- { name: depliantLink, label: "Lien dépliant", widget: string, required: false, hint: "Chemin vers le PDF du dépliant (ex: depliant_entreprises.pdf)" }
- name: avantage-financier
label: "Avantage : Financier"
file: content/pages/engagez-votre-entreprise/avantage-financier.md

View File

@@ -60,7 +60,7 @@
<div class="leg-details">
<template x-if="leg.mode === 'WALK'">
<div>
<p class="leg-line">Marche à pieds</p>
<p class="leg-line">Marche à pied</p>
<p class="leg-text">
<span x-text="formatDistance(leg.distance)"></span>
<span class="leg-duration" x-text="'(' + formatDuration(leg.duration) + ')'"></span>

View File

@@ -67,12 +67,15 @@
<h3 class="plus-infos-title">{{ .Params.plusInfosTitle | default "Plus d'infos ?" }}</h3>
<p class="plus-infos-text">{{ .Params.plusInfosText | default "Vous avez des questions ? Vous souhaitez recevoir de la documentation imprimée ?" }}</p>
<a href="{{ .Params.plusInfosContactLink | default "/pages/contact/" }}" class="plus-infos-button">Contactez-nous</a>
<a href="{{ $downloadIcon := resources.Get "images/picto/download_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg" }}" class="plus-infos-download">
{{ with .Params.depliantLink }}
<a href="{{ . }}" class="plus-infos-download" target="_blank">
{{ $downloadIcon := resources.Get "images/picto/download_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg" }}
{{ if $downloadIcon }}
<img src="{{ $downloadIcon.RelPermalink }}" alt="" />
{{ end }}
<span>Ou téléchargez le dépliant d'information</span>
</a>
{{ end }}
</div>
</div>

View File

@@ -76,13 +76,15 @@
{{ $downloadIcon := resources.Get "images/picto/download_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg" }}
<h3 class="plus-infos-title">{{ .Params.plusInfosTitle | default "Plus d'infos ?" }}</h3>
<p class="plus-infos-text">{{ .Params.plusInfosText | default "Vous avez des questions ? Vous souhaitez recevoir de la documentation imprimée à mettre à disposition de vos publics ?" }}</p>
<a href="{{ .Params.plusInfosContactLink | default "/pages/contact/" }}" class="plus-infos-button">Contactez-nous</a>
<a href="{{ .Params.plusInfosDocLink | default "#" }}" class="plus-infos-download">
<a href="{{ $.Params.plusInfosContactLink | default "/pages/contact/" }}" class="plus-infos-button">Contactez-nous</a>
{{ with $.Params.depliantLink }}
<a href="{{ . }}" class="plus-infos-download" target="_blank">
{{ if $downloadIcon }}
<img src="{{ $downloadIcon.RelPermalink }}" alt="" />
{{ end }}
<span>{{ .Params.plusInfosDownloadText | default "Ou téléchargez le dépliant d'informations Mobi'Conseil" }}</span>
<span>Ou téléchargez le dépliant d'information</span>
</a>
{{ end }}
</div>
</div>
</div>