the horrors
This commit is contained in:
parent
0d9be3d002
commit
4245370f61
48 changed files with 2513 additions and 265 deletions
18
src/layouts/Page.astro
Normal file
18
src/layouts/Page.astro
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
import Layout from "~/layouts/Base.astro";
|
||||
import Header from "~/components/ui/Header.astro";
|
||||
import Strapline from "~/components/ui/Strapline.astro";
|
||||
import Footer from "~/components/ui/Footer.astro";
|
||||
const { title, description, icon, date } = Astro.props;
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<div>
|
||||
<Header />
|
||||
<main>
|
||||
<Strapline title={title} description={description} icon={icon} date={date} />
|
||||
<slot />
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
</Layout>
|
Loading…
Add table
Add a link
Reference in a new issue