--- import { getCategoryHref, type BlogPost } from '@/lib/posts'; interface Props { post: BlogPost; } const { post } = Astro.props; ---

{post.title}

{post.summary &&

{post.summary}

}
{post.categories.map((category) => {category})} {post.tags.map((tag) => #{tag})}