14 lines
253 B
Text
14 lines
253 B
Text
---
|
|
const { content } = Astro.props;
|
|
---
|
|
|
|
<html lang={ content.lang || 'en' }>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{content.title}</title>
|
|
<link rel="stylesheet" href="/styles/global.css">
|
|
</head>
|
|
<body>
|
|
<slot/>
|
|
</body>
|
|
</html>
|