--- import { getCollection } from 'astro:content'; import DefaultLayout from '@/layouts/DefaultLayout.astro'; import { SITE_TITLE, SITE_DESCRIPTION } from '@/consts'; import { ACTIVE_BLOG_SITE } from '@/blog-sites.js'; import { BlogPosts } from '@/components/sections/blog-posts'; const posts = (await getCollection(ACTIVE_BLOG_SITE.key)).sort( (a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf(), ); ---

{ACTIVE_BLOG_SITE.title}

{ACTIVE_BLOG_SITE.description}