Add the Project and Blog index pages (no pagination just yet)

This commit is contained in:
itsfinniii
2026-03-28 16:40:54 +01:00
parent 5cbc906d65
commit 7e501c399b
7 changed files with 315 additions and 3 deletions

View File

@@ -31,6 +31,8 @@ if (page === null || page.page === null || !page.page.exists) {
statusText: "Not Found"
});
}
console.log(page);
---
{ page.page.type === "Webpage" && page.page.exists && (
@@ -110,7 +112,7 @@ if (page === null || page.page === null || !page.page.exists) {
}
}}}>
<Fragment slot="content">
<ProjectIndex page={page.page as ProjectIndex} />
<ProjectIndex page={page.page} />
</Fragment>
</WebpageLayout>
) }