summaryrefslogtreecommitdiff
path: root/src/components/PostList.astro
blob: a537e439285fe1003c93d93cc1550935d47b75af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
const posts = await Astro.glob("../pages/blog/posts/*.md");
---

<div>
	<ul class="postList">
		{
			posts.map((post) => (
				<li>
					<a href={post.url}>{post.frontmatter.title}</a>
				</li>
			))
		}
	</ul>
</div>