--- import SiteNav from './SiteNav.astro'; import { site } from '../lib/siteConfig'; import { tagSlug } from '../lib/posts'; type Props = { post: any; }; const { post } = Astro.props; const { Content } = post; const title = post.frontmatter.title; const date = post.frontmatter.created_at ?? post.frontmatter.published_at ?? post.frontmatter.updated_at; ---

{title}

{date && ( )} {post.frontmatter.summary &&

{post.frontmatter.summary}

} {post.frontmatter.tags?.length > 0 && ( )}