diff options
Diffstat (limited to 'src/layouts/BaseLayout.astro')
-rw-r--r-- | src/layouts/BaseLayout.astro | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro new file mode 100644 index 0000000..a9f68c3 --- /dev/null +++ b/src/layouts/BaseLayout.astro @@ -0,0 +1,19 @@ +<html lang="en"> + <head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> + <link rel="shortcut icon" type="image/jpg" href="/public/icon-64.png"/> + <link rel="stylesheet" href="/style.css" /> + </head> + <body> + <header class="display: inline"> + <a href="/" style="text-decoration: none;"> + <img src="/eug-vs.png" alt="eug-vs" width="128px"> + <h1 style="margin-top: 12px;">Eugene's Space</h1> + </a> + </header> + <main> + <slot /> + </main> + </body> +</html> |