astro/examples/with-markdown/src/layouts/main.astro
2021-07-19 18:23:39 -07:00

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>