diff options
author | Marius Halden <marius.h@lden.org> | 2016-01-11 18:01:30 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-01-11 18:01:30 +0100 |
commit | 82f748855794d15ef84e836e80077be9233d68d4 (patch) | |
tree | b254d232bb604adda03e167ab3deecc51f4c88ce /index.html | |
download | irc-sse-82f748855794d15ef84e836e80077be9233d68d4.tar.gz irc-sse-82f748855794d15ef84e836e80077be9233d68d4.tar.bz2 irc-sse-82f748855794d15ef84e836e80077be9233d68d4.tar.xz |
Initial commit
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..aabeb6e --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> +<head> +<title> IRC SSE </title> + +<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> +<script type="text/javascript" src="/irc-sse.js"></script> +<link rel="stylesheet" type="text/css" href="/style.css" /> +</head> +<body> + +<div id="topic"> + <h3>Topic</h3> +</div> + +<div id="chat-container"> +<ul id="chat"> +</ul> +</div> + +</body> +</html> |