thelounge/client/index.html

21 lines
329 B
HTML
Raw Normal View History

2014-03-04 18:22:06 +01:00
<!doctype html>
<html>
<head></head>
<body>
Hello, world.
2014-03-04 20:40:27 +01:00
<script src="//code.jquery.com/jquery-2.1.0.min.js"></script>
2014-03-04 18:22:06 +01:00
<script src="/socket.io/socket.io.js"></script>
2014-03-04 20:40:27 +01:00
<script src="/js/models.js"></script>
2014-03-04 18:22:06 +01:00
<script src="/js/client.js"></script>
<script>
// Run the client.
new Client();
</script>
</body>
</html>