diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
index a2fd7314..cc51b961 100644
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -10,6 +10,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/markdown.xml b/.idea/markdown.xml
new file mode 100644
index 00000000..f6d2542c
--- /dev/null
+++ b/.idea/markdown.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/config/dateFilters.js b/config/dateFilters.js
index bba425ff..64dc82ba 100644
--- a/config/dateFilters.js
+++ b/config/dateFilters.js
@@ -39,6 +39,6 @@ module.exports = {
},
rssLastUpdatedDate: (collection) => {
if (!collection || !collection.length) return ''
- return collection[0].publishedAt
+ return collection[0]['publishedAt']
},
}
diff --git a/config/filters.js b/config/filters.js
index 96b4b327..c7f15719 100644
--- a/config/filters.js
+++ b/config/filters.js
@@ -16,8 +16,8 @@ module.exports = {
return marked.parse(content)
},
getFirstAttachment: (post) => {
- if (post && post.attachments && post.attachments.length > 0) {
- return post.attachments[0].url ? post.attachments[0].url : post.attachments[0]
+ if (post && post['attachments'] && post['attachments'].length > 0) {
+ return post['attachments'][0].url ? post['attachments'][0].url : post['attachments'][0]
}
return '/assets/img/social-card.png'
diff --git a/config/rssLastUpdated.js b/config/rssLastUpdated.js
index b3505181..2cde1a6d 100644
--- a/config/rssLastUpdated.js
+++ b/config/rssLastUpdated.js
@@ -1,4 +1,4 @@
module.exports = (collection) => {
if (!collection || !collection.length) return ''
- return collection[0].publishedAt
+ return collection[0]['publishedAt']
}
diff --git a/package.json b/package.json
index 0000b24c..25cab1b0 100644
--- a/package.json
+++ b/package.json
@@ -47,6 +47,7 @@
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"liquidjs": "^10.7.1",
+ "luxon": "^3.3.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.4.1",
"markdown-it-footnote": "^3.0.3",
diff --git a/src/_data/albums.js b/src/_data/albums.js
index e615d670..1763947d 100644
--- a/src/_data/albums.js
+++ b/src/_data/albums.js
@@ -8,5 +8,5 @@ module.exports = async function () {
type: 'json',
}).catch()
const albums = await res
- return albums.topalbums.album
+ return albums['topalbums'].album
}
diff --git a/src/_data/artists.js b/src/_data/artists.js
index 7bf480ba..5751760f 100644
--- a/src/_data/artists.js
+++ b/src/_data/artists.js
@@ -8,5 +8,5 @@ module.exports = async function () {
type: 'json',
}).catch()
const artists = await res
- return artists.topartists.artist
+ return artists['topartists'].artist
}
diff --git a/src/_data/status.js b/src/_data/status.js
index 4f62830f..9b86b8b1 100644
--- a/src/_data/status.js
+++ b/src/_data/status.js
@@ -7,5 +7,5 @@ module.exports = async function () {
type: 'json',
}).catch()
const status = await res
- return status.response.statuses[0]
+ return status.response['statuses'][0]
}
diff --git a/src/_includes/author.liquid b/src/_includes/author.liquid
index 956ad063..783d0cfa 100644
--- a/src/_includes/author.liquid
+++ b/src/_includes/author.liquid
@@ -1,3 +1,6 @@
+
+
+
@@ -10,4 +13,4 @@
{{ site.name }}
{{ site.description }}
-
\ No newline at end of file
+
diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid
index 74a9d722..ea6aaa5f 100644
--- a/src/_includes/base.liquid
+++ b/src/_includes/base.liquid
@@ -1,4 +1,5 @@
+
@@ -92,4 +93,4 @@
})()
-
\ No newline at end of file
+