-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (25 loc) · 1.17 KB
/
index.html
File metadata and controls
34 lines (25 loc) · 1.17 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
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA6U2ExB8yLDc7RiGPYK3C3yIzDPpyFJE0&sensor=false"></script>
<script src="scripts/vendor/angular.js"></script>
<script src="scripts/vendor/angular-ui-router.js"></script>
<!-- Firebase -->
<script src="https://cdn.firebase.com/js/client/2.0.4/firebase.js"></script>
<!-- AngularFire -->
<script src="https://cdn.firebase.com/libs/angularfire/0.9.0/angularfire.min.js"></script>
<script src="scripts/vendor/rsvp.min.js"></script>
<script src="https://cdn.firebase.com/libs/geofire/3.0.0/geofire.min.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/services/services.js"></script>
<script src="scripts/directives/directives.js"></script>
<script src="scripts/home/homeController.js"></script>
</head>
<body ng-app='app'>
<div class="container">
<a ui-sref=".home">Home</a>
<!-- injectable views -->
<div ui-view></div>
</div>
</body>
</html>