diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-20 15:05:54 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-20 15:05:54 +0200 |
| commit | 20ac24f66da37cc011e2459c5a347a7083c3272c (patch) | |
| tree | 4a4c4de7b144dbac0f4f59d238697f6ee2d1f3f2 /public/index.html | |
| parent | 83e20713c1c3b55532f6f022eaaf290471d3b5c5 (diff) | |
move rpc around.. serve html
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..bea6e33 --- /dev/null +++ b/public/index.html @@ -0,0 +1,21 @@ +<!doctype html> +<html lang="en" class="loading"> +<head> + <title> + live.cortex + </title> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <link rel="stylesheet" href="/assets/css/css.css"> +</head> +<body> + <div id="container"></div> +</body> +<script src="/socket.io/socket.io.js"></script> +<script> + var s = document.createElement('script'); + s.setAttribute('src','bundle.js?' + Date.now()); + document.body.appendChild(s) +</script> +</html>
\ No newline at end of file |
