SanYeCao-blog/src/layouts/BaseLayout.astro

33 lines
604 B
Text
Raw Normal View History

2026-03-24 17:33:01 +00:00
---
2026-03-24 22:28:23 +00:00
import Footer from "@/components/Footer.astro";
2026-03-24 18:01:45 +00:00
import Header from "@/components/Header.astro";
2026-03-24 19:32:44 +00:00
2026-03-24 17:33:01 +00:00
const { pageTitle } = Astro.props;
---
2026-03-24 14:19:09 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="generator" content={Astro.generator} />
2026-03-24 17:33:01 +00:00
<title>{pageTitle}</title>
2026-03-24 14:19:09 +00:00
</head>
<body>
2026-03-24 18:01:45 +00:00
<Header />
2026-03-24 14:19:09 +00:00
<slot />
2026-03-24 17:33:01 +00:00
<Footer />
2026-03-24 14:19:09 +00:00
</body>
</html>
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
</style>