-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweatherIndex.html
More file actions
35 lines (35 loc) · 1.62 KB
/
weatherIndex.html
File metadata and controls
35 lines (35 loc) · 1.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Weather App</title>
<meta name="viewport" content="width=device-width" initial-scale="1">
<!-- The scripts below contain our dependencies: In other words, files we need in order
for our code to operate and remain flexible/dynamic. These files must be imported or downloaded based on your preference. Linking the scripts ensures we always have a current form of the dependencies available to us, while minimizing our data storage. -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-resource.min.js">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-route.min.js">
</script>
<script src="https://cdn.firebase.com/js/client/2.0.4/firebase.js"></script>
<script src="https://cdn.firebase.com/libs/angularfire/0.9.0/angularfire.min.js"></script>
<script src="project.js"></script>
<link rel="stylesheet" href="./weatherAppCSS/weatherApp.css">
</head>
<body>
<my-app>Loading...</my-app>
<!-- Setup of the system for setting up your Configuration: "forecast:" defines where we want to pull our resources from and to look for the boot file weatherApp/boot. -->
<script>
System.config({
packages: {
forecast: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('weatherApp/boot')
.then(null, console.error.bind(console));
</script>
</body>
</html>