--- import { Image } from 'astro:assets'; import { getCollection } from 'astro:content'; const allPosts = await getCollection('posts'); const slides = allPosts .sort((a, b) => b.data.date.getTime() - a.data.date.getTime()) .slice(0, 5); ---
{post.data.excerpt}