forked from stachow/angular-rig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en" ng-app="app" ng-cloak>
<head>
<meta charset="utf-8">
<title>Angular Rig</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/flat-ui.css" rel="stylesheet">
<link href="css/site.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="js/vendor/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div ng-view></div>
</div>
<script src="http://cdn.pubnub.com/pubnub-3.4.min.js"></script>
<script src="js/vendor/underscore.min.js"></script>
<script src="js/vendor/jquery-1.8.2.min.js"></script>
<script src="js/vendor/angular.js"></script>
<script src="js/app/services.js"></script>
<script src="js/app/directives.js"></script>
<script src="js/app/controllers.js"></script>
<script src="js/app.js"></script>
<!--[if lt IE 8]>
<script src="js/vendor/icon-font-ie7.js"></script>
<script src="js/vendor/icon-font-ie7-24.js"></script>
<![endif]-->
</body>
</html>