aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/BaseLayout.astro
blob: 2def3533fa93d8f73a4180221674db55a967712f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
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>