--- // src/layouts/BlogPostLayout.astro import BaseLayout from './BaseLayout.astro'; interface Props { title: string; publishDate: string; } const { title, publishDate } = Astro.props; --- {publishDate} --- import BlogPostLayout from '../../layouts/BlogPostLayout.astro'; --- This is the actual post content.
{publishDate}
This is the actual post content.