-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (34 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en" ng-app="darkskyForecast">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/normalize/normalize.css">
<link rel="stylesheet" href="assets/css/app.css">
<link rel="stylesheet" href="app/sections/main/mainStyle.css">
<link rel="stylesheet" href="app/sections/forecast/forecastStyle.css">
<!-- Components stylesheets -->
<link rel="stylesheet" href="app/components/location/locationStyle.css">
<!-- Dependencies -->
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-route/angular-route.js"></script>
<script src="app/lib/skycons/skycons.js"></script>
<base href="/">
</head>
<body>
<div ng-view></div>
<!-- Components -->
<script src="app/components/Components.js"></script>
<script src="app/components/location/locationDirective.js"></script>
<script src="app/components/skycon/skyconDirective.js"></script>
<script src="app/app.js"></script>
<script src="app/sections/main/mainController.js"></script>
<script src="app/sections/main/locationsService.js"></script>
<script src="app/sections/forecast/forecastController.js"></script>
<!-- Services -->
<script src="app/services/coordinatesService.js"></script>
<script src="app/services/forecastService.js"></script>
<!--<script src="test/setup.js"></script>-->
</body>
</html>