--- import { getLocale } from "astro-i18n-aut" import { defaultLanguage, en, zh } from "~/config" import { formatDate, getPostsByLocale } from "~/utils" const locale = getLocale(Astro.url) const config = locale === "zh" ? zh : en const posts = (await getPostsByLocale(locale)).slice(0, config.latestPosts ?? 8) const recentPosts = locale === "zh" ? "近期文章" : "Recent Posts" ---
{post.data.title}