summaryrefslogtreecommitdiff
path: root/frontend/src/layouts/Layout.astro
blob: 047538c66cc83f0802c1abe8885922872efd5fce (plain)
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
---
import Footer from '../components/Footer.astro';
 
interface Props {
	title: string;
}

const { title } = Astro.props;
---

<!DOCTYPE html>
<html lang="sco">
	<head>
		<meta charset="UTF-8" />
		<meta name="description" content="The wabsteid o the Scots Leid Associe">
		<meta name="viewport" content="width=device-width" />
		<link rel="icon" href="/favicon.ico" />
		<link rel="stylesheet" href="/public/normalize.css" />
		<link rel="stylesheet" href="/public/main.css" />
		<meta name="generator" content={Astro.generator} />
		<title>{title} | Scots Leid Associe</title>
	</head>
	<body>
		<slot />
		<Footer />
	</body>
</html>