diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-15 23:06:26 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-15 23:06:26 +0200 |
| commit | 58f7d52150456713d3132408668a92d0f6f3d084 (patch) | |
| tree | 4b346042a684e416e53c4f4ac779060b832ad227 /src/app.html | |
| parent | 63c3da2af27fcfb1a9893ade03543e3a30949c8d (diff) | |
Port to sveltekit
Diffstat (limited to 'src/app.html')
| -rw-r--r-- | src/app.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/app.html b/src/app.html new file mode 100644 index 0000000..062ed0f --- /dev/null +++ b/src/app.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <link rel="icon" href="/favicon.ico" /> + <meta name="description" content="A forum for the year 3000" /> + <meta name="robots" content="noindex, nofollow" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="theme-color" content="#ffffff" /> + + %svelte.head% + + <link rel="manifest" href="/manifest.webmanifest" /> + <link rel="stylesheet" href="/global.css" /> + </head> + <body> + <noscript> + <h1>Javascript Required.</h1> + <p>Please enable Javascript to use this forum.</p> + </noscript> + <div id="forum">%svelte.body%</div> + </body> +</html> |