0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-03 08:00:26 +03:00
Files
popov.link/src/layouts/BaseLayout.astro

16 lines
196 B
Plaintext
Raw Normal View History

2024-09-04 21:16:37 +00:00
---
2024-09-05 15:01:13 +00:00
import Head from "../components/Head.astro";
import Header from "../components/Header.astro";
2024-09-04 21:16:37 +00:00
---
<html>
2024-09-05 15:01:13 +00:00
<Head />
2024-09-04 21:16:37 +00:00
<body>
2024-09-05 15:01:13 +00:00
<Header />
<article>
<slot />
</article>
2024-09-04 21:16:37 +00:00
</body>
</html>