--- // SPDX-FileCopyrightText: 2025 Norbert Melzer // SPDX-FileContributor: Norbert Melzer // // SPDX-License-Identifier: MIT import { getEntry, type CollectionEntry } from "astro:content"; import { postPath, authorPath } from "../scripts/paths"; import Date from "../components/Date.astro"; export interface Props { post: CollectionEntry<"blog">; } const { post } = Astro.props; const author = await getEntry(post.data.author); ---