summaryrefslogtreecommitdiff
path: root/public/index.html
blob: 6b36c542e21626d4d271626bcbd6ca9faa54f293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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>