--- import Layout from "./Layout.astro"; const { frontmatter } = Astro.props; const title = `${frontmatter.title} - Firq FGO Site`; const description = frontmatter.description; const options_date: Intl.DateTimeFormatOptions = { year: "numeric", month: "long", day: "2-digit", } const date = new Date(frontmatter.pubDate).toLocaleDateString('en-GB', options_date); ---

{frontmatter.title}

by {frontmatter.author} • Published on {date}