-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 922 Bytes
/
index.html
File metadata and controls
35 lines (30 loc) · 922 Bytes
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 ng-app="app">
<head>
<meta charset="utf-8">
<title>bobiko</title>
<link href="lib/css/bootstrap.min.css" rel="stylesheet">
<link href="lib/css/bootstrap-theme.min.css" rel="stylesheet">
</head>
<body>
<main class="container">
<div class="col-lg-12">
<div ng-view>
</div>
</div>
</main>
<script src="lib/js/jquery-2.1.1.min.js"></script>
<script src="lib/js/bootstrap.min.js"></script>
<script src="lib/angular/angular.min.js"></script>
<script src="lib/angular/angular-route.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers/inbox.js"></script>
<script src="js/factories/InboxFactory.js"></script>
<script src="js/directives/inbox.js"></script>
<script>
function TestCtrl($scope) {
$scope.title = "Example title! (Change or delete me)";
}
</script>
</body>
</html>