blog/src/components/PostList.astro
2023-08-30 22:47:22 -05:00

24 lines
515 B
Plaintext

---
import { getCollection } from "astro:content";
const allPosts = await getCollection("posts");
---
<table style="width: 100%;">
{
allPosts.map((post) => {
return (
<tr class="postlisting-row">
<td class="info">{post.data.date}</td>
<td>
<span class="title">
<a href="{{ .RelPermalink }}" class="brand-colorlink">
{post.data.title}
</a>
</span>
</td>
</tr>
);
})
}
</table>