-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (47 loc) · 2.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<title>Backbone.js + Raphael.js + Node.js application</title>
</head>
<body>
<div class="container">
<div id="chart_forecast_view" class="chart-view">
<div class="title">Weather forecast for 5 days</div>
<div class="info">
<input id="location" class="" type="text" name="location" placeholder="Enter a city"/>
<button id="statistics_show" class="btn btn-primary btn-search">Search</button>
</div>
<div id="forecast_chart"></div>
</div>
<div id="chart_statistics_view" class="chart-view">
<div class="title"><a href="http://www.mamba.ru" target="_blank">Mamba.ru</a> users online</div>
<div id="statistics_chart"></div>
</div>
</div>
<script type="text/javascript" src="libs/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="libs/underscore.js"></script>
<script type="text/javascript" src="libs/backbone-min.js"></script>
<!-- Twitter bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<!-- Raphael lib -->
<script src="libs/raphael.js"></script>
<script src="libs/g.raphael-min.js"></script>
<script src="libs/g.line-min.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script src="http://localhost:8000/socket.io/socket.io.js"></script>
<script src="js/utils.js"></script>
<!--Views-->
<script type="text/javascript" src="js/views/forecastChart.js"></script>
<script type="text/javascript" src="js/views/activityChart.js"></script>
<script type="text/javascript" src="js/views/chart.js"></script>
<!--Models and collections-->
<script type="text/javascript" src="js/models/activity.js"></script>
<script type="text/javascript" src="js/models/forecast.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>