1---
2import HeadTags from "../components/HeadTags.astro";
3const { title = "yoyle.city", description = "my cozy lil website" } = Astro.props;
4---
5
6<!DOCTYPE html>
7<html lang="en">
8 <head>
9 <title>{title}</title>
10 <meta name="description" content={description} />
11 <meta property="og:title" content={title} />
12 <meta property="og:description" content={description} />
13 <link rel="stylesheet" href="../styles.css" />
14 <HeadTags />
15 <meta name="generator" content={Astro.generator} />
16 </head>
17 <body>
18 <header>
19 <nav>
20 <a href="/links">links</a>
21 <a href="/about">about</a>
22 <a href="/arcade">arcade</a>
23 <a href="/art">art</a>
24 <a href="https://blog.yoyle.city">blog</a>
25 <a href="https://lime360.atabook.org">guestbook</a>
26 <a href="https://nekoweb.org/follow/lime360">[+]</a>
27 </nav>
28 </header>
29 <main>
30 <slot />
31 </main>
32 <br />
33 <footer style="padding: 25px">© 2021 - 2026 fizzylimesoda</footer>
34 </body>
35</html>