diff options
author | Matt Strapp <matt@mattstrapp.net> | 2023-09-13 15:14:25 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2023-09-13 15:22:38 -0500 |
commit | fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce (patch) | |
tree | fdded80b264dcd8576dd4735c2c8a80806103040 /app/src/app.html | |
download | trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.gz trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.bz2 trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.lz trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.xz trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.tar.zst trinkets-fe4b4fdf7cbbf27ab96b4618ab0d3f39b02a04ce.zip |
Initial commit
Get the skeleton (hehe) started
Diffstat (limited to 'app/src/app.html')
-rw-r--r-- | app/src/app.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/src/app.html b/app/src/app.html new file mode 100644 index 0000000..0297ac7 --- /dev/null +++ b/app/src/app.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html lang="en" class="dark"> + <head> + <meta charset="utf-8" /> + <link rel="icon" href="%sveltekit.assets%/favicon.png" /> + <meta name="viewport" content="width=device-width" /> + %sveltekit.head% + </head> + <body data-sveltekit-preload-data="hover" data-theme="crimson"> + <div style="display: contents" class="h-full overflow-hidden">%sveltekit.body%</div> + </body> +</html> |