---
import type { CollectionEntry } from "astro:content";
export type Props = {
article: CollectionEntry<"articles">;
headerElement?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "h7";
};
const {
article: {
id,
data: { title, date },
},
headerElement = "h2",
} = Astro.props;
const H = headerElement;
---
{date.toLocaleString()}
{title}
aaa
... Read more