25 lines
420 B
Plaintext
25 lines
420 B
Plaintext
---
|
|
import "./base.scss";
|
|
|
|
/** Properties for the base layout. */
|
|
export interface Props {
|
|
frontmatter: {
|
|
pageTitle: string;
|
|
};
|
|
}
|
|
|
|
const {frontmatter} = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{frontmatter.pageTitle}</title>
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|