-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (57 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en" ng-app="weatherApp">
<head>
<meta charset="UTF-8">
<title>Weather APP</title>
<!--BootStrap css -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<!-- Toastr css, Using for notification -->
<link rel="stylesheet" href="bower_components/toastr/toastr.css">
<!-- Jquery -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/toastr/toastr.min.js"></script>
</head>
<body>
<div ui-view></div>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script>
<!--App and configuraion -->
<script src="app.js"></script>
<script src="app/config-router.js"></script>
<!--Services-->
<script src="app/services/weather-service.js"></script>
<!--Constants-->
<script src="app/constants/wAppConstants.js"></script>
<!-- controllers -->
<script src="app/home/home-controller.js"></script>
<script src="app/home/home.forecast-controller.js"></script>
<!--Directives -->
<script src="app/directives/currentWeather.js"></script>
<script src="app/directives/forecastWeather-directive.js"></script>
<script src="app/services/notifier.js"></script>
<!--filters -->
<script src="app/filters/filters.js"></script>
<style>
table tr td:first-child {
border: 1px solid darkgrey;
box-shadow: 5px 5px 5px
}
#current.panel {
color: white;
background: #337ab7;
}
#current {
width: 60%;
margin: auto;
}
.navbar-header {
width: 100%;
text-align: center;
padding: 10px;
float: left;
background-color: #31708f;
}
</style>
</body>
</html>