--- import HTMLayout from '../../layouts/HTMLayout.astro' import Article from '../../components/Article.astro' const pageTitle = "benjae's Blog attempt!!" const allPosts = Object.values(import.meta.glob('./posts/**/*.md', { eager: true })); allPosts.sort( (a, b) => Date.parse(b.frontmatter.pubDate) - Date.parse(a.frontmatter.pubDate) ); ---

the place where i try to say things more than 3 lines long

rss attempt (sorry for no content i can't figure that out, thanks astro docs)