summaryrefslogtreecommitdiff
path: root/src/layouts/BaseLayout.astro
blob: 793c713f75e1fee7c32d3996c08b2784d49ed324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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="/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>