1
Fork 0
driftingnebula-com/source/layouts/base.astro

31 lines
590 B
Plaintext

---
import "modern-normalize/modern-normalize.css";
import "../scss/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>
<link
rel="shortcut icon"
href="/driftingnebula-logo-shadowed.png"
type="image/x-icon"
/>
</head>
<body>
<slot />
</body>
</html>