--- import { getEmDashCollection } from "emdash"; import { Image } from "emdash/ui"; import Base from "../layouts/Base.astro"; const { entries: posts, cacheHint } = await getEmDashCollection("posts", { orderBy: { published_at: "desc" }, }); Astro.cache.set(cacheHint); ---

Recent Posts

{ posts.length === 0 ? (

No posts yet.{" "} Create one.

) : ( ) }