-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (40 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html data-ng-app="customersApp">
<head>
<title>Credit Calculator</title>
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<link href="Content/bootstrap-responsive.min.css" rel="stylesheet" />
<link href="Content/customerManagementStyles.css" rel="stylesheet" />
</head>
<body>
<!-- Note that AngularJS 1.2+ now has a built-in ng-animation direction. Left in animated-view to show a
custom directive -->
<div animated-view></div>
<div id="footer">
<div class="navbar navbar-fixed-bottom">
<div class="navbar-inner">
<div class="container">
<footer class="span10">
<div class="row">
<div class="foot">
Created by Ding Wang, 2014
</div>
</div>
</footer>
</div>
</div>
</div>
</div>
<!-- Vendor Libs: jQuery only used for Bootstrap functionality -->
<script src="Scripts/angular.js"></script>
<script src="Scripts/angular-route.js"></script>
<script src="Scripts/jquery.min.js"></script>
<!-- UI Libs -->
<script src="Scripts/bootstrap.js"></script>
<!-- App libs -->
<script src="app/app.js"></script>
<script src="app/controllers/controllers.js"></script>
<script src="app/services/customersService.js"></script>
<script src="app/directives/animatedView.js"></script>
</body>
</html>