20 lines
303 B
Plaintext
20 lines
303 B
Plaintext
---
|
|
import HTMLCommonHead from "../components/HTMLCommonHead.astro";
|
|
import "../styles/global.css";
|
|
|
|
interface Props {
|
|
title: string;
|
|
}
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="zh">
|
|
<head>
|
|
<HTMLCommonHead title={title} />
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|