0
mirror of https://github.com/valentineus/popov.link.git synced 2025-06-07 10:33:34 +03:00
popov.link/src/layouts/BaseLayout.astro

28 lines
648 B
Plaintext

---
import CanonicalURL from "../components/CanonicalURL.astro";
---
<html>
<head>
<!-- Meta tags -->
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="index, follow" name="robots" />
<!-- Title / Description -->
<meta content="Description" name="description" />
<title>Title</title>
<!-- RSS -->
<link href="#" rel="alternate" title="RSS" type="application/atom+xml" />
<!-- Canonical URL -->
<CanonicalURL />
</head>
<body>
<slot />
</body>
</html>