mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-blog.git
synced 2026-07-03 23:51:26 +00:00
24 lines
438 B
Text
24 lines
438 B
Text
|
|
<!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} />
|
||
|
|
<title>Astro Basics</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<slot />
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
html,
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
</style>
|