[FA-misc] Astro migration works, probably want to touchup the frontend but that can be in Phase 4
This commit is contained in:
11
fictionarchive-web-astro/src/pages/novels/[id].astro
Normal file
11
fictionarchive-web-astro/src/pages/novels/[id].astro
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
// SSR page (default in server mode, no prerender export needed)
|
||||
import AppLayout from '../../layouts/AppLayout.astro';
|
||||
import NovelDetailPage from '../../lib/components/NovelDetailPage.svelte';
|
||||
|
||||
const { id } = Astro.params;
|
||||
---
|
||||
|
||||
<AppLayout title="Novel Detail - FictionArchive">
|
||||
<NovelDetailPage novelId={id} client:load />
|
||||
</AppLayout>
|
||||
Reference in New Issue
Block a user