---
/**
* Posts Archive
*/
import { getEmDashCollection } from "emdash";
import Base from "../../layouts/Base.astro";
import PostCard from "../../components/PostCard.astro";
const { entries: posts } = await getEmDashCollection("posts", {
status: "published",
});
---
No posts found.
) }