--- export interface Props { post: any; author: string; } const { post, author } = Astro.props; function formatDate(date) { return new Date(date).toUTCString().replace(/(\d\d\d\d) .*/, '$1'); // remove everything after YYYY } --- {post.title} {author.name} {formatDate(post.date)} {post.description} Read
{post.description} Read