diff --git a/src/layouts/sitemap.njk b/src/layouts/sitemap.njk
index 3137dec..150e34d 100644
--- a/src/layouts/sitemap.njk
+++ b/src/layouts/sitemap.njk
@@ -5,7 +5,7 @@
{%- for item in collections.article %}
{{ item.url | absoluteUrl(meta.url) }}
- {{ item.date | date("YYYY-MM-dd")}}
+ {{ item.date | date("yyyy-MM-ddTHH:mm:sszzz")}}
{{ item.data.sitemapChangefreq | default("monthly") }}
{{ item.data.sitemapPriority | default(0.8) }}
@@ -14,7 +14,7 @@
{%- if item.url.split("/")[1] === "" %}
{{ item.url | absoluteUrl(meta.url) }}
- {{ item.date | date("YYYY-MM-dd")}}
+ {{ item.date | date("yyyy-MM-ddTHH:mm:sszzz")}}
{{ item.data.sitemapChangefreq | default("weekly") }}
{{ item.data.sitemapPriority | default(0.8) }}
@@ -22,7 +22,7 @@
{%- if item.url.split("/")[1] === "decouverte" %}
{{ item.url | absoluteUrl(meta.url) }}
- {{ item.date | date("YYYY-MM-dd")}}
+ {{ item.date | date("yyyy-MM-ddTHH:mm:sszzz")}}
{{ item.data.sitemapChangefreq | default("yearly") }}
{{ item.data.sitemapPriority | default(0.7) }}
@@ -30,7 +30,7 @@
{%- if item.url.split("/")[1] === "liens" %}
{{ item.url | absoluteUrl(meta.url) }}
- {{ item.date | date("YYYY-MM-dd")}}
+ {{ item.date | date("yyyy-MM-ddTHH:mm:sszzz")}}
{{ item.data.sitemapChangefreq | default("monthly") }}
{{ item.data.sitemapPriority | default(0.5) }}
@@ -41,7 +41,7 @@
{%- set snipeturl = "/"+categoryUrl(item.slug) | trim %}
{{ snipeturl | absoluteUrl(meta.url) }}
- {{ page.date | date("YYYY-MM-dd")}}
+ {{ page.date | date("yyyy-MM-ddTHH:mm:sszzz")}}
monthly
0.3