--- import SmallTitle from '../components/titles/smallTitle.astro' 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 ) const subtext = `Written by ${frontmatter.author} • Published on ${date}` ---