{title}
{pubDate && } { updatedDate && (
Last updated on
)
}
--- import BaseHead from '../components/BaseHead.astro'; import Header from '../components/Header.astro'; import Footer from '../components/Footer.astro'; import type { CollectionEntry } from 'astro:content'; type Props = CollectionEntry<'blog'>['data']; const { title, description, pubDate, updatedDate, heroImage } = Astro.props; ---