21 lines
744 B
JavaScript
21 lines
744 B
JavaScript
module.exports = async function () {
|
|
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
|
|
const feed = new ActivityFeed()
|
|
feed.addSource('atom', '📝', 'https://coryd.dev/feeds/posts')
|
|
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
|
|
feed.addSource('atom', '🔗', 'https://coryd.dev/feeds/links')
|
|
feed.addSource('atom', '📖', 'https://coryd.dev/feeds/books')
|
|
const entries = feed.getEntries().catch()
|
|
const res = await entries
|
|
const activity = { posts: [] }
|
|
res.forEach((entry) =>
|
|
activity.posts.push({
|
|
id: entry.url,
|
|
title: entry.title,
|
|
url: entry.url,
|
|
content_html: entry.content || '',
|
|
date_published: entry.published,
|
|
})
|
|
)
|
|
return activity
|
|
}
|