tweetcast/nodejs/client/index.html
author Raphael Velt <raph.velt@gmail.com>
Tue, 25 Oct 2011 14:48:22 +0200
changeset 335 5f83c21dee69
parent 334 b7f05d66b620
child 336 d60efd677b50
permissions -rw-r--r--
Created conf.js file, shared between server & client
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
333
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     1
<!doctype html>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     2
<html>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     3
 <head>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     5
  <title>Polemic Tweet “TweetCast”</title>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     6
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
335
5f83c21dee69 Created conf.js file, shared between server & client
Raphael Velt <raph.velt@gmail.com>
parents: 334
diff changeset
     7
  <script type="text/javascript" src="/conf.js"></script>
334
b7f05d66b620 Minor changes
Raphael Velt <raph.velt@gmail.com>
parents: 333
diff changeset
     8
  <script type="text/javascript" src="/socket.io/socket.io.js"></script>
333
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     9
  <script type="text/javascript" src="js/Raphael-min.js"></script>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    10
  <script type="text/javascript" src="js/jquery.mousewheel.min.js"></script>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    11
  <script type="text/javascript" src="js/script.js"></script>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    12
  <link rel="stylesheet" href="css/style.css" type="text/css" />
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    13
 </head>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    14
 <body>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    15
    <ul id="tweetlist">
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    16
    </ul>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    17
    <div id="timeline"></div>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    18
    <div id="timewindow"></div>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    19
 </body>
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    20
</html>