From dc9d5de0e9b80e50209d1823da7a81eb3738f773 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 10 Aug 2024 16:26:03 -0700 Subject: [PATCH] fix: json feed date --- package-lock.json | 4 ++-- package.json | 2 +- src/includes/partials/feeds/json.liquid | 28 +++++++++++-------------- 3 files changed, 15 insertions(+), 19 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2f00382d..b4240463 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.10.0", + "version": "21.10.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.10.0", + "version": "21.10.1", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index ab5efc55..4d25940d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.10.0", + "version": "21.10.1", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/includes/partials/feeds/json.liquid b/src/includes/partials/feeds/json.liquid index 0e95add7..b2ce78d1 100644 --- a/src/includes/partials/feeds/json.liquid +++ b/src/includes/partials/feeds/json.liquid @@ -6,13 +6,11 @@ "description": "{{ globals.site_description | escape }}", "icon": "https://cdn.coryd.dev/{{ globals.feed_image | escape }}?class=w200&v={% appVersion %}", "favicon": "https://cdn.coryd.dev/{{ globals.favicon_ico | escape }}?class=w50&v={% appVersion %}", - "authors": [ - { - "name": "{{ globals.site_name }}", - "url": "{{ globals.url | escape }}", - "avatar": "https://cdn.coryd.dev/{{ globals.avatar | escape }}?class=w200&v={% appVersion %}" - } - ], + "authors": [{ + "name": "{{ globals.site_name }}", + "url": "{{ globals.url | escape }}", + "avatar": "https://cdn.coryd.dev/{{ globals.avatar | escape }}?class=w200&v={% appVersion %}" + }], "items": [ {%- assign entries = data | normalizeEntries: 20 -%} {%- for entry in entries -%} @@ -25,16 +23,14 @@ "summary": "{{ summary }}", {%- if entry.author -%} "external_url": "{{ entry.url | encodeAmp | escape }}", - "authors": [ - { - "name": "{{ entry.author.name | escape }}", - "url": "{{ entry.author.url | escape }}", - "mastodon": "{{ entry.author.mastodon | escape }}", - "rss": "{{ entry.author.feed | escape }}" - } - ], + "authors": [{ + "name": "{{ entry.author.name | escape }}", + "url": "{{ entry.author.url | escape }}", + "mastodon": "{{ entry.author.mastodon | escape }}", + "rss": "{{ entry.author.feed | escape }}" + }], {%- endif %} - "date_published": "{{ entry.date | stringToRFC822Date }}"{%- if entry.tags -%}, + "date_published": "{{ entry.date | date: '%Y-%m-%dT%H:%M:%S%:z' }}"{%- if entry.tags -%}, "tags": [ {%- for tag in entry.tags -%} "{{ tag | escape }}"{%- unless forloop.last -%}, {% endunless -%}