summaryrefslogtreecommitdiff
path: root/frontend/src/layouts/Layout.astro
blob: 1a476131fa9c2f98018c20ca94685e4e2bc9b7d3 (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>