Files
aurora/src/layouts/ArticleLayout.astro

22 lines
575 B
Plaintext
Raw Normal View History

2023-05-18 17:31:16 +02:00
---
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}>
2023-05-18 20:20:43 +02:00
<TableOfContents slot="nav" client:only="svelte" {headings} />
2023-05-18 17:31:16 +02:00
<Fragment slot="header">
<p>
Published on
<strong>
<PublicationDate {publicationDate} />
</strong>
</p>
<a href="#">Edit this page</a>
</Fragment>
<slot />
</PageLayout>