mirror of
https://github.com/reonokiy/blog.nokiy.net.git
synced 2025-06-15 19:22:52 +02:00
11 lines
142 B
Text
11 lines
142 B
Text
---
|
|
import Header from '@/components/Header.astro'
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<Header />
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|