--- import { Picture } from '@astrojs/image/components'; import PostTags from '~/components/atoms/Tags.astro'; import SocialShare from '~/components/atoms/SocialShare.astro'; import { getFormattedDate } from '~/utils/utils'; import type { Post } from '~/utils/posts'; export interface Props { post: Post; url: string; } const { post, url } = Astro.props; ---

~ { Math.ceil(post.readingTime) } min read

{post.title}

{ post.image ? ( ) : (
) }
{ post.Content ? ( <> {/* @ts-ignore */} ) : ( ) }