aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/BaseLayout.astro
blob: 5cbaf5cb144de72505e40822e8824db2fea58f07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
import Head from "../components/Head.astro";
import Header from "../components/Header.astro";

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

<html>
	<Head title={title} description={description} />

	<body>
		<Header />
		<article>
			<slot />
		</article>
	</body>
</html>