21 lines
329 B
HTML
21 lines
329 B
HTML
<!doctype html>
|
|
<html>
|
|
<head></head>
|
|
<body>
|
|
|
|
Hello, world.
|
|
|
|
<script src="//code.jquery.com/jquery-2.1.0.min.js"></script>
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
|
|
<script src="/js/models.js"></script>
|
|
<script src="/js/client.js"></script>
|
|
|
|
<script>
|
|
// Run the client.
|
|
new Client();
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|