--- import Base from "@layouts/Base.astro"; import { type CollectionEntry } from 'astro:content'; interface Props { post: CollectionEntry<'blog'>; } const { post } = Astro.props; const { title, pubDate, tags } = post.data; ---
{pubDate} { tags.join(" ")}