aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/BaseLayout.astro
blob: c100dad8dd4454dfd647fb6b5bcf9b9cdd65d6ee (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
---

---

<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 -->
		<link href="#" rel="canonical" />
	</head>

	<body>
		<slot />
	</body>
</html>