--- // 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); ---

{post.data.title}

{author.data.first_name} {author.data.last_name}
{/* TODO: provide the hero image */} {post.data.description}