summaryrefslogtreecommitdiff
path: root/src/layouts/Base.astro
blob: 6ec66c5eaaf3d555eda211ce5204fa471642676b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
import "@fontsource-variable/noto-sans";
import "@fontsource/noto-sans-mono";

import NavBar from "@components/NavBar.astro";
import "@styles/main.css";

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

<!doctype html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<title>{title}</title>
		<meta name="viewport" content="width=device-width,initial-scale=1" />
		<meta name="description" content={description} />
		<link rel="sitemap" href="/sitemap-index.xml" />
	</head>

	<body>
		<h1><b>getchoo's website 🚀</b></h1>
		<slot name="nav">
			<nav>
				<slot name="extra_nav" />
				<NavBar />
			</nav>
		</slot>
		<slot />
		<slot name="footer">
			<footer>
				<slot name="extra_footer" />
				<a href="https://github.com/getchoo/website">source code</a>
			</footer>
		</slot>
	</body>
</html>