blob: 80e81fb42a27d6a879d047ded21580dfc7ec516f (
plain) (
blame)
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
|
---
import '../styles/global.css';
const { content } = Astro.props;
---
<html lang={content.lang || 'en'}>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>{content.title}</title>
<style>
.nav {
border-bottom: 1px solid #ccc;
margin-bottom: 40px;
padding-bottom: 20px;
}
.nav > * + * {
margin-left: 10px;
}
</style>
</head>
<body>
<main class="content">
<header>
<nav class="nav">
<a href="/">Home</a>
</nav>
</header>
<slot />
</main>
</body>
</html>
|