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

<html>
	<Head />

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