Initial commit

This commit is contained in:
thiloho
2023-05-18 17:31:16 +02:00
parent 88bab1f351
commit b3f4c79763
28 changed files with 1248 additions and 31 deletions

View File

@@ -0,0 +1,21 @@
---
const { title, description, publicationDate, headings } = Astro.props;
import PageLayout from "./PageLayout.astro";
import TableOfContents from "../components/TableOfContents.svelte";
import PublicationDate from "../components/PublicationDate.astro";
---
<PageLayout {title} {description}>
<TableOfContents slot="nav" client:load {headings} />
<Fragment slot="header">
<p>
Published on
<strong>
<PublicationDate {publicationDate} />
</strong>
</p>
<a href="#">Edit this page</a>
</Fragment>
<slot />
</PageLayout>