--- import { getCollection } from 'astro:content' import PageLayout from '@layouts/PageLayout.astro' const news = await getCollection('news') ---

Notizie

{ news.map(newsItem => (
{newsItem.data.title}
{new Date(newsItem.data.publishDate).toLocaleDateString('it-IT', { year: 'numeric', month: 'long', day: 'numeric', })}
{newsItem.data.description}
)) }