2024-09-04 21:16:37 +00:00
|
|
|
---
|
|
|
|
import { getCollection } from "astro:content";
|
2024-09-06 08:21:27 +00:00
|
|
|
import Layout from "../layouts/PageLayout.astro";
|
2024-09-04 21:16:37 +00:00
|
|
|
|
|
|
|
const posts = await getCollection("blog");
|
|
|
|
---
|
|
|
|
|
|
|
|
<Layout>
|
|
|
|
<ul>
|
|
|
|
{
|
|
|
|
posts.map((post) => (
|
|
|
|
<li>
|
|
|
|
<a href={`/blog/${post.slug}`}>{post.data.title}</a>
|
|
|
|
</li>
|
|
|
|
))
|
|
|
|
}
|
|
|
|
</ul>
|
|
|
|
</Layout>
|