summaryrefslogtreecommitdiff
path: root/examples/with-markdown-shiki/src/layouts/main.astro
blob: 425f5dc089546b82401a07f1808efea6b0c3e8b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
import '../styles/global.css';

const { content } = Astro.props;
---

<html lang={content.lang || 'en'}>
	<head>
		<meta charset="utf-8" />

		<link rel="icon" type="image/x-icon" href="/favicon.ico" />

		<title>{content.title}</title>
	</head>
	<body>
		<slot />
	</body>
</html>