templates for self-hosting game jams (or any other kind of jam tbh)
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width" />
6 <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
7 <meta name="generator" content={Astro.generator} />
8 <title>Astro Basics</title>
9 </head>
10 <body>
11 <slot />
12 </body>
13</html>
14
15<style>
16 html,
17 body {
18 margin: 0;
19 width: 100%;
20 height: 100%;
21 }
22</style>