2023-05-18 17:31:16 +02:00
|
|
|
---
|
|
|
|
|
const { title, description } = Astro.props;
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
|
<meta name="generator" content={Astro.generator} />
|
|
|
|
|
<title>{title}</title>
|
|
|
|
|
<meta name="author" content="Your Name" />
|
|
|
|
|
<meta name="description" content={description} />
|
2023-05-18 20:20:43 +02:00
|
|
|
<script is:inline>
|
|
|
|
|
const storedTheme = localStorage.getItem("theme");
|
2023-05-19 12:33:18 +02:00
|
|
|
document.documentElement.className = storedTheme;
|
2023-05-18 20:20:43 +02:00
|
|
|
</script>
|
2023-05-18 17:31:16 +02:00
|
|
|
</head>
|