summaryrefslogtreecommitdiff
path: root/public/index.html
blob: d1cb6f883d8be68bc675d29b221c2fe8e4fad3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!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'>
  <script>
    var s = document.createElement('link');
    var a = window.location.href.match('localhost') ? Date.now() : (Math.round(Date.now() / 3600000) * 3600000)
    s.setAttribute('rel', 'stylesheet');
    s.setAttribute('href', '/assets/css/css.css?' + a);
    document.querySelector('head').appendChild(s)
  </script>
</head>

<body>
  <div id='container'></div>
</body>

<script src='/socket.io/socket.io.js'></script>
<script>
  var s = document.createElement('script');
  var a = window.location.href.match('localhost') ? Date.now() : (Math.round(Date.now() / 3600000) * 3600000)
  s.setAttribute('src','/bundle.js?' + a);
  document.body.appendChild(s)
</script>
</html>