--- import { getCollection } from "astro:content"; const pages = await getCollection("blog"); import Layout from "@layouts/Layout.astro"; import { getLocale } from "astro-i18n-aut"; import { filterCollection } from "@i18n/utils"; const locale = getLocale(Astro.url); const posts = filterCollection(pages, locale); ---
{ posts.map((post) => ( <> <> {post.data.title}
)) }