blob: 1a2d81c550dda325907674bbfd693ee2814aadad (
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
|
<!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');
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>
|