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 <!-- ICONS --> 28 <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> 29 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> 30 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> 31 <link rel="manifest" href="/site.webmanifest"> 32 33 <!-- RESOURCES --> 34 <link href="/bootstrap.min.css" rel="stylesheet" /> 35 <script src="/bootstrap.bundle.min.js" is:inline></script> 36 <link rel="stylesheet" href="/style.css" type="text/css" /> 37 38 <!-- MASTODON VERIFICATION --> 39 <link rel="me" href="https://mastodon.social/@indexcard" /> 40 </head> 41 <body> 42 <slot /> 43 </body> 44</html>