-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (34 loc) · 1.64 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
<html ng-app="buildApp">
<head>
<!--Jquery-->
<script src="js/vendors/jquery-2.2.3.min.js"></script>
<!--Bootstrap Files-->
<script src="css/vendor/bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
<link href="css/vendor/bootstrap-3.3.6-dist/css/bootstrap.css" rel="stylesheet" />
<!--Custom CSS-->
<link href="css/style.css" rel="stylesheet" type="text/css" />
<!--Font Files-->
<link href="css/vendor/font-awesome-4.6.2/css/font-awesome.css" rel="stylesheet" />
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<!--Weather Icons-->
<link href="css/vendor/weather-icons-master/css/weather-icons.css" rel="stylesheet" />
<link href="css/vendor/weather-icons-master/css/weather-icons-wind.css" rel="stylesheet" />
<link href="css/weather-icons/weathericons-regular-webfont.eot" />
<link href="css/weather-icons/weathericons-regular-webfont.svg" />
<link href="css/weather-icons/weathericons-regular-webfont.ttf" />
<link href="css/weather-icons/weathericons-regular-webfont.woff" />
<link href="css/weather-icons/weathericons-regular-webfont.woff2" />
</head>
<body class="container">
<ui-view></ui-view>
</body>
<!--Angular Files-->
<script src="js/vendors/angular.min.js"></script>
<script src="js/vendors/ui-bootstrap-tpls-1.3.2.min.js"></script>
<script src="js/vendors/angular-ui-router.js"></script>
<script src="js/app.js"></script>
<script src="js/serviceCall.js"></script>
<script src="js/sharedData.js"></script>
<script src="js/landingScreen/queryCtrl.js"></script>
<script src="js/displayScreen/displayController.js"></script>
</html>