25 lines
710 B
Plaintext
Raw Normal View History

2024-09-05 15:01:13 +00:00
---
2024-09-12 16:36:57 +00:00
type Props = {
2024-09-12 22:57:55 +00:00
readonly description: string;
readonly title: string;
2024-09-12 16:36:57 +00:00
};
2024-09-11 22:03:55 +00:00
2024-09-12 16:36:57 +00:00
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
2024-09-12 22:57:55 +00:00
const { description, title } = Astro.props;
2024-09-05 15:01:13 +00:00
---
<head>
2024-09-11 22:03:55 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
2024-09-12 22:57:55 +00:00
<meta name="description" content={description} />
2024-09-11 22:03:55 +00:00
<meta name="robots" content="index, follow" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2024-09-05 15:01:13 +00:00
<link href="/feed.xml" rel="alternate" title="RSS" type="application/atom+xml" />
<link href="/sitemap-index.xml" rel="sitemap" />
<link href={canonicalURL} rel="canonical" />
2024-09-12 22:57:55 +00:00
<title>{title}</title>
2024-09-05 15:01:13 +00:00
</head>