24 lines
487 B
Plaintext
24 lines
487 B
Plaintext
---
|
|
import '../assets/style.css'
|
|
|
|
interface Props {
|
|
title?: string
|
|
}
|
|
|
|
const { title = '小帕的小窝' } = Astro.props
|
|
---
|
|
|
|
<html lang="zh-hans">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|