Files
ld-site/src/layouts/DefaultLayout.astro

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>