--- import { l, t, astroI18n } from "astro-i18n"; import AstroImage from "../components/AstroImage.astro"; import BaseLayout from "../layouts/BaseLayout.astro"; const currentLocale = astroI18n.langCode; const { frontmatter, image, title } = Astro.props; const publishedDate = new Date(frontmatter.pubDate); const localizedDate = new Intl.DateTimeFormat(currentLocale, { dateStyle: "long", }).format(publishedDate); ---

PubliĆ© le :

{ t("article.published", { datetime: frontmatter.pubDate, options: { dateStyle: "long" }, }) }

{ frontmatter.tags.map((tag) => (

{tag}

)) }

{frontmatter.description}


	
{ !!image && ( ) }