fix: feed date
This commit is contained in:
parent
94f77a46dd
commit
4c66036e84
2 changed files with 5 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
|
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
|
||||||
const feed = new ActivityFeed()
|
const feed = new ActivityFeed()
|
||||||
feed.addSource('atom', '📝', 'https://coryd.dev/feeds/posts')
|
// feed.addSource('rss', '📝', 'https://coryd.dev/feeds/posts')
|
||||||
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
|
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
|
||||||
feed.addSource('atom', '🔗', 'https://coryd.dev/feeds/links')
|
// feed.addSource('rss', '🔗', 'https://coryd.dev/feeds/links')
|
||||||
feed.addSource('atom', '📖', 'https://coryd.dev/feeds/books')
|
// feed.addSource('rss', '📖', 'https://coryd.dev/feeds/books')
|
||||||
const entries = feed.getEntries().catch()
|
const entries = feed.getEntries().catch()
|
||||||
const res = await entries
|
const res = await entries
|
||||||
const activity = { posts: [] }
|
const activity = { posts: [] }
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
<description>{{ description }}</description>
|
<description>{{ description }}</description>
|
||||||
<link>{{ permalink | absoluteUrl: site.url }}</link>
|
<link>{{ permalink | absoluteUrl: site.url }}</link>
|
||||||
|
<lastBuildDate>{{ updated }}</lastBuildDate>
|
||||||
<image>
|
<image>
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
<link>{{ permalink | absoluteUrl: site.url }}</link>
|
<link>{{ permalink | absoluteUrl: site.url }}</link>
|
||||||
|
@ -16,6 +17,7 @@
|
||||||
<item>
|
<item>
|
||||||
<title>{{ entry.title | escape }}</title>
|
<title>{{ entry.title | escape }}</title>
|
||||||
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
||||||
|
<pubDate>{{ entry.date }}</pubDate>
|
||||||
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
||||||
<description>{{ entry.excerpt | markdown | escape }}</description>
|
<description>{{ entry.excerpt | markdown | escape }}</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
Reference in a new issue