blob: 7f5bc2ac21a7c4b3f12fc1c6fefe789b7b79aed3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
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>
</head>
<body>
<slot />
</body>
</html>
|