--- import type { GetStaticPaths } from "astro"; import { getCollection } from "astro:content"; import Layout from "@/layouts/Layout.astro"; import dayjs from "dayjs"; import utc from "dayjs/plugin/utc"; export const getStaticPaths = (async () => { const fics = await getCollection("fics"); return fics.map(fic => ({ params: { ficId: fic.id }, props: { fic }, })); }) satisfies GetStaticPaths; const { fic } = Astro.props; const chapters = await getCollection("chapters", ({ id }) => { return id.startsWith(fic.id); }); chapters.length = Math.min(chapters.length, 5); chapters.sort((a, b) => a.data.sortOrder - b.data.sortOrder); dayjs.extend(utc); --- `} /> {fic.data.title} Fandom {fic.data.series.join(", ")} Date {dayjs(fic.data.publishedAt).utc(true).format("MMMM DD, YYYY")} Summary start reading rss feed chapters {chapters.map(chapter => ( {chapter.data.title} ))}
Fandom {fic.data.series.join(", ")}