listy list list listy

This commit is contained in:
nelle 2024-08-17 14:11:03 -06:00
parent 80006144b5
commit c69e193d6e

View file

@ -24,8 +24,9 @@ const posts = (await getCollection("blog")).sort(
{
posts.map((post) => (
<>
<a href={`/blog/${post.slug}/`}>{post.data.title}</a>
<br>
<ul>
<li><a href={`/blog/${post.slug}/`}>{post.data.title}</a></li>
</ul>
</>
))
}