diff --git a/config/filters/dates.js b/config/filters/dates.js index 5aedb0dd..6028aad9 100644 --- a/config/filters/dates.js +++ b/config/filters/dates.js @@ -1,20 +1,4 @@ -import { DateTime } from 'luxon' - export default { - isoDateOnly: (date, separator) => { - let d = new Date(date) - let month = '' + (d.getMonth() + 1) - let day = '' + d.getDate() - let year = d.getFullYear() - - if (month.length < 2) month = '0' + month - if (day.length < 2) day = '0' + day - - return [year, month, day].join(separator) - }, - oldPost: (date) => { - return DateTime.now().diff(DateTime.fromJSDate(new Date(date)), 'years').years > 3 - }, stringToRFC822Date: (dateString) => { const date = new Date(Date.parse(dateString)) const dayStrings = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] diff --git a/src/includes/base.liquid b/src/includes/base.liquid index 2199d2b3..60fa5594 100644 --- a/src/includes/base.liquid +++ b/src/includes/base.liquid @@ -142,7 +142,7 @@ "inLanguage": "{{ globals.locale }}", "publisher": { "@type": "{{ globals.site_type }}", "name": "{{ globals.author }}", "url": "{{ globals.url }}" }, "author": { "@type": "Person", "name": "{{ globals.author }}" }, - "datePublished": "{{ page.date | isoDateOnly: '.' }}" + "datePublished": "{{ page.date | date: "%Y.%m.%d" }}" } {%- endif -%} ] diff --git a/src/includes/partials/blocks/banners/old-post.liquid b/src/includes/partials/blocks/banners/old-post.liquid index 50545181..c0b26e89 100644 --- a/src/includes/partials/blocks/banners/old-post.liquid +++ b/src/includes/partials/blocks/banners/old-post.liquid @@ -1,4 +1,3 @@ -{%- assign isOldPost = date | oldPost -%} {%- if isOldPost -%}