-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·30 lines (28 loc) · 1.22 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
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/mystyles.css">
<link rel="stylesheet" href="bower_components/toastr/toastr.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.css">
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/angular-messages/angular-messages.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/toastr/toastr.js"></script>
<script src="js/core/core_module.js"></script>
<script src="js/app.js"></script>
<script src="js/dataFactory.js"></script>
<script src="js/filter.js"></script>
<script src="js/controllers/mainController.js"></script>
<script src="js/controllers/addController.js"></script>
<script src="js/controllers/editController.js"></script>
<script src="js/controllers/addProfController.js"></script>
</head>
<body>
<div ng-controller="mainController">
<ui-view></ui-view>
</div>
</body>
</html>