--- import { Picture } from 'astro:assets' import type { CollectionEntry } from 'astro:content' import PostAttributes from './PostAttributes.astro' import Tags from './Tags.astro' export type Props = { post: CollectionEntry<'blog'> } const { post } = Astro.props const { remarkPluginFrontmatter } = await post.render() ---
{post.data.coverImage && }

{post.data.title}

({ name: tag, href: `/tag/${tag}` }))} />