--- interface Props { posts: any[]; } const { posts } = Astro.props; if (!posts || posts.length === 0) return null; ---

Meistgelesen

{posts.slice(0, 3).map((post, index) => (
{index + 1}

{post.title}

{new Date(post.date).toLocaleDateString('de-DE')}

))}