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

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

<html lang="ru">
	<Head title={title} description={description} />

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