Files
ld-site/src/layouts/DefaultLayout.astro
2024-06-08 23:10:03 +08:00

20 lines
301 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>