--- import {formatDateToYYYYMMDD} from "../../utils/date-utils"; interface Props { title: string; slug: string; pubDate: Date; class: string; } const { title, slug, pubDate } = Astro.props; const className = Astro.props.class; import { Icon } from 'astro-icon/components'; import {licenseConfig, profileConfig} from "../../config"; import {i18n} from "../../i18n/translation"; import I18nKey from "../../i18n/i18nKey"; const profileConf = profileConfig; const licenseConf = licenseConfig; const postUrl = Astro.url; ---
{title}
{postUrl}
{i18n(I18nKey.author)}
{profileConf.name}
{i18n(I18nKey.publishedAt)}
{formatDateToYYYYMMDD(pubDate)}
{i18n(I18nKey.license)}
{licenseConf.name}