--- import BaseHead from '../components/BaseHead.astro'; import Header from '../components/Header.astro'; import Footer from '../components/Footer.astro'; export interface Props { content: { title: string; description: string; pubDate?: string; updatedDate?: string; heroImage?: string; }; } const { content: { title, description, pubDate, updatedDate, heroImage }, } = Astro.props; ---
{heroImage && }

{title}

{pubDate && } { updatedDate && (
Last updated on
) }