aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/Layout.astro
blob: eeca5348877c39bbe2eca494c1955e8a5bd47b6d (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
28
29
30
31
32
33
34
35
36
37
38
39
---
interface Props {
	title: string;
	description: string;
}

const { title = "ShiftOS: The Archive", description } = Astro.props;
import '../styles/style.css';
import '../styles/window.css';
---

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
    <link rel="icon" href="/favicon.ico" type="image/x-icon">

    <!-- Default Metadata -->
	<meta name="title" content={title} />
	<meta name="description" content={description} />

	<!-- Open Graph Metadata -->
    <meta property="og:title" content={title} />
	<meta property="og:description" content={description} />
	<meta property="og:image" content="https://shiftos.dev/shiftos.png" />
	<meta property="og:type" content="website" />

    <meta name="theme-color" content="#000000"/>
    <meta name="generator" content={Astro.generator} />

    <title>{title}</title>
</head>
<body>
	<slot />
	<script defer data-domain="shiftos.dev" src="https://stats.alee14.me/js/script.file-downloads.outbound-links.js"></script>
</body>
</html>