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