My personal site hosted @ https://indexx.dev
1---
2interface Props {
3 title: string;
4 description?: string;
5}
6
7const {
8 title,
9 description
10} = Astro.props;
11---
12
13<!doctype html>
14<html lang="en">
15 <head>
16 <!-- META TAGS -->
17 <meta charset="utf-8" />
18 <meta name="viewport" content="width=device-width, initial-scale=1" />
19 <meta name="generator" content={Astro.generator} />
20
21 <!-- PUBLIC -->
22 <title>{title}</title>
23 <meta name="title" content={title} />
24 <meta name="site_name" content="hey, I'm Index" />
25 <meta name="description" content={description} />
26
27 <!-- RESOURCES -->
28 <link href="/bootstrap.min.css" rel="stylesheet" />
29 <script src="/bootstrap.bundle.min.js" is:inline></script>
30 <link rel="stylesheet" href="/style.css" type="text/css" />
31
32 <!-- MASTODON VERIFICATION -->
33 <link rel="me" href="https://mastodon.social/@indexcard" />
34 </head>
35 <body>
36 <slot />
37 </body>
38</html>