blob: 2aa3d9ee303128981dd7dcc251489ecfac7a8338 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
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>
<header>
<Nav />
</header>
<div class="main-content">
<slot />
</div>
<Footer />
</body>
</html>
|