aboutsummaryrefslogtreecommitdiff
path: root/src/components/Head.astro
blob: bc5609fcc3ec6be77a26bab39c25f91f79894951 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
---

<head>
	<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" />
	<meta content="Description" name="description" />

	<link href="/feed.xml" rel="alternate" title="RSS" type="application/atom+xml" />
	<link href="/sitemap-index.xml" rel="sitemap" />
	<link href={canonicalURL} rel="canonical" />

	<title>Title</title>
</head>