--- title: A Plain Markdown Post publishDate: 2026-08-01 --- This entry is a regular .md file — no imports, no embedded components. --- title: A Post With a Live Component publishDate: 2026-08-06 --- import LiveCounter from '../../components/LiveCounter.jsx'; This entry is an .mdx file with a live component embedded. --- // src/pages/blog/index.astro import { getCollection } from 'astro:content'; const posts = (await getCollection('blog')).sort( (a, b) => b.data.publishDate.valueOf() - a.data.publishDate.valueOf() ); ---