--- interface Props { title: string; description: string; date: string; href: string; note?: string; } const { title, description, date, href, note } = Astro.props; ---
{date}

{title}

{description} { note && ( <>
{note} ) }