styled feed; bug fixes

This commit is contained in:
Cory Dransfeldt 2023-03-15 16:33:42 -07:00
parent 18927e73ea
commit 9b17dc6d18
No known key found for this signature in database
9 changed files with 143 additions and 3 deletions

6
config/rssLastUpdated.js Normal file
View file

@ -0,0 +1,6 @@
const { DateTime } = require('luxon')
module.exports = (collection) => {
if (!collection || !collection.length) return ''
return collection[0].publishedAt
}