--- import { getCollection, render } from 'astro:content'; import FormattedDate from '../components/FormattedDate.astro'; import Layout from '../layouts/IndexLayout.astro'; const posts = await getCollection('releases'); posts.sort((a, b) => +b.data.date - +a.data.date); ---

Changelog