stub out webapp & Set up a go skeleton that works with the underlying FE js

This commit is contained in:
Barak Michener 2020-11-11 20:08:54 -08:00
commit 35325c74d0
16 changed files with 2869 additions and 0 deletions

BIN
web/public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

4
web/public/global.css Normal file
View file

@ -0,0 +1,4 @@
html,
body {
height: 100vh;
}

18
web/public/index.html Normal file
View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>Svelte app</title>
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/global.css'>
<link rel='stylesheet' href='/build/bundle.css'>
<script defer src='/build/bundle.js'></script>
</head>
<body>
</body>
</html>