summaryrefslogtreecommitdiff
path: root/src/components/BlogPost.astro
blob: 0070f2b1d865b554bcd7d9fdd983757b9eeed4b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
const { post } = Astro.props;
const date: Date = new Date(post.frontmatter.date);
---

<a class="block" href={post.url}>
    <h2>
        {post.frontmatter.title}<span class="text-xs no-underline">
            {date.toLocaleDateString("de-DE")}</span
        >
    </h2>
    <p>{post.frontmatter.description}</p>
    <p class="text-xs">Tags: {post.frontmatter.tags.join(", ")}</p>
</a>