Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/jhroemer/jhroemer.github.io. My personal website jensroemer.com
Something went wrong. Try again.
489 B · 17 lines
TypeScript
at main
123456789101112131415161718import rss from "@astrojs/rss";import { getCollection } from "astro:content";
export async function get() { const posts = await getCollection("posts"); return rss({ title: "Jens Rømer Hesselbjerg | Blog", description: "My personal blog", site: "https://jhroemer.github.io/", items: posts.map((post) => ({ title: post.data.title, pubDate: post.data.pubDate, link: `/posts/${post.id}/`, })), customData: `<language>en-us</language>`, });}