mirror of
https://github.com/thiloho/aurora.git
synced 2025-11-22 11:31:36 +01:00
22 lines
566 B
Plaintext
22 lines
566 B
Plaintext
|
|
---
|
||
|
|
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>
|