-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (70 loc) · 5.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html ng-app="dashboard">
<head>
<title>NAM BOARD</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="stylesheets/style.css">
<link href="stylesheets/third-party/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="stylesheets/third-party/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="stylesheets/third-party/ionicons.min.css" rel="stylesheet" type="text/css">
<link href="stylesheets/third-party/morris/morris.css" rel="stylesheet" type="text/css">
<link href="stylesheets/third-party/jvectormap/jquery-jvectormap-1.2.2.css" rel="stylesheet" type="text/css">
<link href="stylesheets/third-party/fullcalendar/fullcalendar.css" rel="stylesheet" type="text/css">
<link href="stylesheets/third-party/daterangepicker/daterangepicker-bs3.css" rel="stylesheet" type="text/css">
<link href="stylesheets/third-party/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css" rel="stylesheet" type="text/css">
<link href="stylesheets/third-party/AdminLTE.css" rel="stylesheet" type="text/css">
<link href="stylesheets/switch.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="stylesheets/style.css">
<!--<link rel="stylesheet" href="stylesheets/compiled.css">-->
<body ng-cloak="true" ng-controller="global">
<div ng-view></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script src="javascripts/third-party/jquery-ui-1.10.3.min.js" type="text/javascript"></script>
<script src="javascripts/third-party/jquery.cookie.js" type="text/javascript"></script>
<script src="javascripts/third-party/bootstrap.min.js" type="text/javascript"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="javascripts/third-party/plugins/morris/morris.min.js" type="text/javascript"></script>
<script src="javascripts/third-party/plugins/sparkline/jquery.sparkline.min.js" type="text/javascript"></script>
<script src="javascripts/third-party/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js" type="text/javascript"></script>
<script src="javascripts/third-party/plugins/jvectormap/jquery-jvectormap-world-mill-en.js" type="text/javascript"></script>
<script src="javascripts/third-party/plugins/fullcalendar/fullcalendar.min.js" type="text/javascript"></script>
<script src="javascripts/third-party/plugins/jqueryKnob/jquery.knob.js" type="text/javascript"></script>
<script src="javascripts/third-party/plugins/daterangepicker/daterangepicker.js" type="text/javascript"></script>
<script src="javascripts/third-party/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js" type="text/javascript"></script>
<script src="javascripts/third-party/plugins/iCheck/icheck.min.js" type="text/javascript"></script>
<script src="javascripts/third-party/AdminLTE/app.js" type="text/javascript"></script>
<script src="javascripts/third-party/AdminLTE/dashboard.js" type="text/javascript"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.21/angular.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.21/angular-cookies.min.js"></script>
<script type="text/javascript" src="javascripts/third-party/angular-route.min.js"></script>
<script type="text/javascript" src="javascripts/core.js"></script>
<script type="text/javascript" src="javascripts/routes.js"></script>
<script type="text/javascript" src="javascripts/services/websocket.js"></script>
<script type="text/javascript" src="javascripts/services/authentication.js"></script>
<script type="text/javascript" src="javascripts/models/light.js"></script>
<script type="text/javascript" src="javascripts/models/user.js"></script>
<script type="text/javascript" src="javascripts/models/sensor.js"></script>
<script type="text/javascript" src="javascripts/models/scenario.js"></script>
<script type="text/javascript" src="javascripts/models/mouvement.js"></script>
<script type="text/javascript" src="javascripts/models/texttospeech.js"></script>
<script type="text/javascript" src="javascripts/models/notification.js"></script>
<script type="text/javascript" src="javascripts/models/chat.js"></script>
<script type="text/javascript" src="javascripts/models/audioplayer.js"></script>
<script type="text/javascript" src="javascripts/models/torrents.js"></script>
<script type="text/javascript" src="javascripts/models/people.js"></script>
<script type="text/javascript" src="javascripts/controllers/global.js"></script>
<script type="text/javascript" src="javascripts/controllers/light.js"></script>
<script type="text/javascript" src="javascripts/controllers/user.js"></script>
<script type="text/javascript" src="javascripts/controllers/sensor.js"></script>
<script type="text/javascript" src="javascripts/controllers/scenario.js"></script>
<script type="text/javascript" src="javascripts/controllers/mouvement.js"></script>
<script type="text/javascript" src="javascripts/controllers/texttospeech.js"></script>
<script type="text/javascript" src="javascripts/controllers/notification.js"></script>
<script type="text/javascript" src="javascripts/controllers/chat.js"></script>
<script type="text/javascript" src="javascripts/controllers/audioplayer.js"></script>
<script type="text/javascript" src="javascripts/controllers/torrents.js"></script>
<script type="text/javascript" src="javascripts/controllers/people.js"></script>
<!--<script type="text/javascript" src="javascripts/compiled.js"></script>-->
</body>
</head>
</html>