25 lines
784 B
Plaintext
Raw Normal View History

2024-09-05 15:01:13 +00:00
---
2024-09-12 16:36:57 +00:00
type Props = {
readonly description?: string;
readonly title?: string;
};
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-11 22:03:55 +00:00
const { title, description } = 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" />
<meta name="description" content={description ?? import.meta.env.DEFAULT_DESCRIPTION} />
<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-11 22:03:55 +00:00
<title>{title ?? import.meta.env.DEFAULT_TITLE}</title>
2024-09-05 15:01:13 +00:00
</head>