---
import { getMonthName } from '$/utils'
import { USE_MEDIA_THUMBNAIL } from '$/config'
const { post } = Astro.props
---
{ new Date(post.date).getDate() }
{ `${getMonthName(post.date)} ${new Date(post.date).getFullYear()}` }
{ USE_MEDIA_THUMBNAIL && post.thumbnail &&

}
{post.host}
{
post.participants.length > 0 && with
}
{
post.participants.length > 0 && `${post.participants.join(', ')}`
}
{post.description}