diff --git a/config/filters/index.js b/config/filters/index.js
index 4196aec9..1ffbe5c3 100644
--- a/config/filters/index.js
+++ b/config/filters/index.js
@@ -70,7 +70,7 @@ export default {
})
.split(',')[0]
},
- isoDateOnly: (date) => {
+ isoDateOnly: (date, separator) => {
let d = new Date(date)
let month = '' + (d.getMonth() + 1)
let day = '' + d.getDate()
@@ -79,7 +79,7 @@ export default {
if (month.length < 2) month = '0' + month
if (day.length < 2) day = '0' + day
- return [month, day, year].join('.')
+ return [year, month, day].join(separator)
},
stringToDate: (string) => {
if (!string) return
diff --git a/package.json b/package.json
index 75d82c41..7c069c97 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "coryd.dev",
- "version": "6.5.13",
+ "version": "6.5.14",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {
diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid
index 493def88..7a9e0d61 100644
--- a/src/_includes/base.liquid
+++ b/src/_includes/base.liquid
@@ -61,7 +61,7 @@
"@type": "Person",
"name": "{{ meta.author }}"
},
- "datePublished": "{{ page.date | isoDateOnly }}"
+ "datePublished": "{{ page.date | isoDateOnly: '.' }}"
}
{% else %}
diff --git a/src/pages/sitemap.liquid b/src/pages/sitemap.liquid
index a20e66c2..ab9987f6 100644
--- a/src/pages/sitemap.liquid
+++ b/src/pages/sitemap.liquid
@@ -8,7 +8,7 @@ eleventyExcludeFromCollections: true
{% if not page.data.draft %}
{{mention.content.text}}
-{{mention.published | isoDateOnly}}
+{{mention.published | isoDateOnly: '.' }}