diff --git a/content/actualites/journee-du-velo-2024/index.md b/content/actualites/journee-du-velo-2024/index.md index ecf76ec..01ea88a 100644 --- a/content/actualites/journee-du-velo-2024/index.md +++ b/content/actualites/journee-du-velo-2024/index.md @@ -5,6 +5,9 @@ featured_image: src: stand_discussions.jpg caption: Sebastien Denise et Alexis Martini discutent de l'état des aménagements cyclables avec deux visiteurs sur notre stand. alt: Quatre personnes discutant devant un stand. +tags: + - manifestation + - Aubevoye --- Ce samedi 20 avril 2024, l'association VMEMS a participé à la journée du vélo organisé par la mairie du Val d'Hazey. Première édition de ce type évènement jamais réalisé auparavant à Gaillon-Aubevoye, elle a regroupé plusieurs acteurs locaux de la mobilité et des loisirs à vélo. diff --git a/hugo.toml b/hugo.toml index 8946064..71187bf 100644 --- a/hugo.toml +++ b/hugo.toml @@ -9,15 +9,16 @@ enableGitInfo = true [params] dateFmt = "2006-01-02 15:04" - [params.contact] - email = "contact@vmems.fr" - website = "https://vmems.fr" - # helloasso = "" - # helloasso_adhesion = "" - # paper_adhesion = "https://static.vmems.fr/" - # [params.socials] - # facebook = "https://www.facebook.com/groups/bethleemaubevoye" - # youtube = "https://www.youtube.com/@letoiledebethleem9895" +ISO8601 = "2006-01-02T15:04:05-07:00" +[params.contact] +email = "contact@vmems.fr" +website = "https://vmems.fr" +# helloasso = "" +# helloasso_adhesion = "" +# paper_adhesion = "https://static.vmems.fr/" +# [params.socials] +# facebook = "https://www.facebook.com/groups/bethleemaubevoye" +# youtube = "https://www.youtube.com/@letoiledebethleem9895" diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 317a349..199ed61 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -11,6 +11,14 @@ Mis à jour le {{ end }}

+

+ {{- range $index, $element := .Params.tags -}} + {{- with $element -}} + {{- if $index -}}, {{- end -}} + {{ . }} + {{- end -}} + {{ end }} +

{{ if .Params.featured_image }} @@ -26,12 +34,11 @@ {{ end }} {{ end }} - {{ range .Params.tags }} - {{ . }} - {{ end }} -
- {{ .Content }} -
+ +
+ {{ .Content }} +
+ {{ end }} diff --git a/layouts/index.html b/layouts/index.html index b56f1a1..2f0fb80 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -11,8 +11,12 @@ />
-

Ensemble, rendons Gaillon-Aubevoye cyclable !

-
Association Vélo et Mobilités en Eure-Madrie-Seine
+

+ Ensemble, rendons Gaillon-Aubevoye cyclable ! +

+
+ Association Vélo et Mobilités en Eure-Madrie-Seine +
@@ -58,57 +62,53 @@ What we do */}}
-
-

Nos actions citoyennes 🎬

-
+
+ + Les sujets et projets en cours + +
+
- {{/* - How to help us - */}} -

Nous avons besoin de votre aide ! 🙋

- - + {{/* How to help us */}} +

Nous avons besoin de votre aide ! 🙋

+ +
- {{/* - Show last 3 news - */}} + {{/* Show last 3 news */}}

Nos dernières actualités

{{ $news := where .Site.RegularPages "Section" "in" "actualites" }} {{ range $index, $element := $news }}{{ if eq $index 0 }} diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 8fd5790..afe1075 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,6 +1,9 @@ +{{- $title := partialCached "data/title" . .RelPermalink -}} +{{ $title }} {{ if not .IsHome }}- VMEMS{{ end }} + {{- $description := partialCached "data/description" . .RelPermalink -}} @@ -8,15 +11,18 @@ {{ end }} -{{- $title := partialCached "data/title" . .RelPermalink -}} - -{{ $title }} {{ if not .IsHome }}- VMEMS{{ end }} +{{ if .IsPage }} +{{- with .Params.tags -}} + +{{ end }} +{{- end -}} -{{ partial "opengraph/include.html" . }} +{{- partial "metas/opengraph.html" . -}} +{{- partial "metas/json-ld.html" . -}} -{{ range .AlternativeOutputFormats }} +{{- range .AlternativeOutputFormats -}} {{ end }} @@ -29,7 +35,7 @@ -{{ $style := resources.Get "sass/main.scss" | resources.ToCSS | resources.Fingerprint }} +{{- $style := resources.Get "sass/main.scss" | resources.ToCSS | resources.Fingerprint -}} diff --git a/layouts/partials/metas/json-ld.html b/layouts/partials/metas/json-ld.html new file mode 100644 index 0000000..6a8ff2f --- /dev/null +++ b/layouts/partials/metas/json-ld.html @@ -0,0 +1,23 @@ +{{ if .IsPage }} +{{ if eq .Section "actualites" }} + +{{ end }} +{{ end }} diff --git a/layouts/partials/opengraph/include.html b/layouts/partials/metas/opengraph.html similarity index 100% rename from layouts/partials/opengraph/include.html rename to layouts/partials/metas/opengraph.html