diff options
Diffstat (limited to 'public')
| -rw-r--r-- | public/assets/css/css.css | 2 | ||||
| -rw-r--r-- | public/index.html | 21 |
2 files changed, 23 insertions, 0 deletions
diff --git a/public/assets/css/css.css b/public/assets/css/css.css new file mode 100644 index 0000000..38d2045 --- /dev/null +++ b/public/assets/css/css.css @@ -0,0 +1,2 @@ +* { box-sizing: border-box } +html,body { margin: 0; padding: 0; width: 100%; height: 100%; font-family: 'Helvetica', sans-serif; font-weight: 300; } 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 |
