-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (29 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Still Alive</title>
<!-- Angular Script File -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script>
<!--angular ui-router module-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.15/angular-ui-router.min.js"></script>
<!--angular uuid module (for unique ids)-->
<script src="lib/angular-uuid.js"></script>
<!--angular local storage module (for local storage)-->
<script src="lib/angular-local-storage.min.js"></script>
<!-- jQuery cdn -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" href="css/main.css">
<!-- google maps api -->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBPqc3B1TqCnIA0UXPG0jCU15GMJCAPswI&libraries=places">
</script>
<link rel="stylesheet" href="css/main.css">
<script src="js/app.js"></script>
</head>
<body ng-app="Main">
<div ui-view>
</div>
</body>
</html>