diff --git a/.eleventy.js b/.eleventy.js index 1f31aa51..2ad0fa5a 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -108,7 +108,6 @@ export default async function (eleventyConfig) { Object.keys(filters).forEach((filterName) => { eleventyConfig.addLiquidFilter(filterName, filters[filterName]) }) - eleventyConfig.addLiquidFilter('dateToRfc822', pluginRss.dateToRfc822) eleventyConfig.addFilter('slugify', slugifyString) // shortcodes diff --git a/config/filters/index.js b/config/filters/index.js index 71178239..7a8d088d 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -88,6 +88,25 @@ export default { oldPost: (date) => { return DateTime.now().diff(DateTime.fromJSDate(new Date(date)), 'years').years > 3; }, + stringToRFC822Date: (dateString) => { + const addLeadingZero = (num) => { + num = num.toString(); + while (num.length < 2) num = "0" + num; + return num; + } + const dayStrings = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; + const monthStrings = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; + const timeStamp = Date.parse(dateString); + const date = new Date(timeStamp); + const day = dayStrings[date.getDay()]; + const dayNumber = addLeadingZero(date.getDate()); + const month = monthStrings[date.getMonth()]; + const year = date.getFullYear(); + const time = `${addLeadingZero(date.getHours())}:${addLeadingZero(date.getMinutes())}:00`; + const timezone = date.getTimezoneOffset() === 0 ? "GMT" : "PT"; + + return `${day}, ${dayNumber} ${month} ${year} ${time} ${timezone}`; + }, // links findPost: (url, posts) => { diff --git a/package.json b/package.json index 4c4db79c..c42d6ad2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "6.0.5", + "version": "6.0.6", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": { diff --git a/src/_includes/partials/feeds/json.liquid b/src/_includes/partials/feeds/json.liquid index cb66b38c..84cd2344 100644 --- a/src/_includes/partials/feeds/json.liquid +++ b/src/_includes/partials/feeds/json.liquid @@ -11,7 +11,7 @@ "title": "{{ entry.title }}", "url": "{{ entry.url }}", "content_text": "{{ entry.title }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}", - "date_published": "{{ entry.date | stringToDate | dateToRfc822 }}" + "date_published": "{{ entry.date | stringToRFC822Date }}" }{% if not forloop.last %},{% endif %} {%- endfor %} ] diff --git a/src/_includes/partials/feeds/rss.liquid b/src/_includes/partials/feeds/rss.liquid index 45de7d24..62a46ee4 100644 --- a/src/_includes/partials/feeds/rss.liquid +++ b/src/_includes/partials/feeds/rss.liquid @@ -1,11 +1,12 @@ - + + {%- assign entries = data | normalizeEntries -%} {{ title }} {{ description }} {{ permalink | absoluteUrl: meta.url }} - {{ updated }} + {{ updated | stringToRFC822Date }} {{ title }} {{ permalink | absoluteUrl: meta.url }} @@ -17,7 +18,7 @@ {{ entry.title | escape }} {{ entry.url | stripUtm | encodeAmp }} - {{ entry.date | stringToDate | dateToRfc822 }} + {{ entry.date | stringToRFC822Date }} {{ entry.url | stripUtm | encodeAmp }} {{ entry.excerpt | escape }} diff --git a/src/pages/opml.liquid b/src/pages/opml.liquid index de91c6bc..1cc32e77 100644 --- a/src/pages/opml.liquid +++ b/src/pages/opml.liquid @@ -5,13 +5,13 @@ eleventyExcludeFromCollections: true --- - - OPML for all feeds in Cory Dransfeldt's blogroll - {{ page.date | dateToRfc822 }} - - - {%- for blog in blogroll -%} - - {% endfor %} - + + OPML for all feeds in Cory Dransfeldt's blogroll + {{ page.date | stringToRFC822Date }} + + + {%- for blog in blogroll -%} + + {% endfor %} + \ No newline at end of file diff --git a/src/posts/2024/link-page-improvements.md b/src/posts/2024/link-page-improvements.md index 9d5c5a34..7b65ad09 100644 --- a/src/posts/2024/link-page-improvements.md +++ b/src/posts/2024/link-page-improvements.md @@ -8,7 +8,7 @@ tags: - 'Eleventy' --- -I made a few quick improvements to my [links page](/links). +I made a few quick improvements to my [links page](https://coryd.dev/links). I've fetched the author from Readwise's Reader API and displayed it next to the time, which required the simple addition of a field to my `links.js` data file. Additionally, and perhaps more interestingly, when a link has been shared via [Nicolas Hoizey](https://nicolas-hoizey.com)'s [GitHub action](https://github.com/nhoizey/github-action-feed-to-mastodon), it's rendered with a Mastodon icon linking to said post.