links/src/layouts/Layout.astro

16 lines
247 B
Text
Raw Normal View History

2023-01-06 20:10:00 +01:00
---
2023-01-06 21:02:23 +01:00
import HeadCommon from '../components/HeadCommon.astro';
import HeadSEO from '../components/HeadSEO.astro';
2023-01-06 20:10:00 +01:00
---
<!DOCTYPE html>
2023-01-06 21:02:23 +01:00
<html dir="ltr" lang="sk-SK">
2023-01-06 20:10:00 +01:00
<head>
2023-01-06 21:02:23 +01:00
<HeadCommon />
<HeadSEO />
2023-01-06 20:10:00 +01:00
</head>
<body>
<slot />
</body>
</html>