summaryrefslogtreecommitdiff
path: root/src/layouts/Base.astro
blob: c60347cb057e9b7f2304969f4e6adb991f112eb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
import Footer from "@components/Footer.astro";
import Head from "@components/Head.astro";
import Nav from "@components/Nav.astro";

const { title, description } = Astro.props.frontmatter || Astro.props;
---

<!doctype html>
<html lang="en">
	<Head title={title} description={description} />
	<body>
		<h1><b>getchoo's website 🚀</b></h1>
		<slot name="nav">
			<Nav />
		</slot>
		<slot />
		<slot name="footer">
			<Footer />
		</slot>
	</body>
</html>