mirror of
https://github.com/thelounge/thelounge
synced 2024-11-22 12:03:11 +00:00
20 lines
341 B
HTML
20 lines
341 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().connect("");
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|