--- import type { CollectionEntry } from 'astro:content'; import BaseLayout from './BaseLayout.astro'; import FormattedDate from '../components/FormattedDate.astro'; import { Image } from 'astro:assets'; type Props = CollectionEntry<'blog'>['data']; const { title, description, pubDate, updatedDate, heroImage } = Astro.props; ---
Back to Blog
{heroImage && }
{ updatedDate && ( (Updated: ) ) }

{title}

{description}