mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-03 16:10:26 +03:00
16 lines
196 B
Plaintext
16 lines
196 B
Plaintext
---
|
|
import Head from "../components/Head.astro";
|
|
import Header from "../components/Header.astro";
|
|
---
|
|
|
|
<html>
|
|
<Head />
|
|
|
|
<body>
|
|
<Header />
|
|
<article>
|
|
<slot />
|
|
</article>
|
|
</body>
|
|
</html>
|