SanYeCao-blog/src/layouts/BaseLayout.astro

30 lines
542 B
Text
Raw Normal View History

2026-03-24 17:33:01 +00:00
---
import Footer from "../components/Footer.astro"
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>
<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>