--- import BaseLayout from './BaseLayout.astro'; interface Props { title: string; description?: string; pubDate?: Date; } const { title, description, pubDate } = Astro.props; ---

{title}

{pubDate &&

{pubDate.toLocaleDateString('zh-CN')}

} {description &&

{description}

}