--- import HomeLayout from "~/layouts/home.astro" import "~/styles/post.css" import { formatDate } from "~/utils" const { title, description, pubDate, updatedDate } = Astro.props --- {title} {description && } { title && (

{title}

{pubDate && (

{formatDate(pubDate)}

)}
) }
{ updatedDate && (

更新时间:{formatDate(updatedDate)}

) }