-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 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
<!DOCTYPE html>
<html ng-app="siteCard">
<head lang="en">
<meta charset="UTF-8">
<title>MDB</title>
<link rel="stylesheet" href="bower_components/angular-material/angular-material.min.css">
</head>
<body>
<!-- Angular Material Dependencies -->
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-animate/angular-animate.min.js"></script>
<script src="bower_components/angular-aria/angular-aria.min.js"></script>
<script src="bower_components/angular-material/angular-material.min.js"></script>
<!---Other Third-party libs-->
<script src="bower_components/underscore/underscore-min.js"></script>
<!--business.common-->
<script src="src/business/common/modelFactory.js"></script>
<script src="src/business/common/adapterFactory.js"></script>
<!--business.dto-->
<script src="src/business/dto/Author.js"></script>
<script src="src/business/dto/Content.js"></script>
<script src="src/business/dto/Page.js"></script>
<!--business.dal-->
<script src="src/business/dal/authorAdapter.js"></script>
<script src="src/business/dal/contentAdapter.js"></script>
<script src="src/business/dal/pageAdapter.js"></script>
<!--business-->
<script src="src/business/businessFacade.js"></script>
<!--app-->
<script src="src/app.js"></script>
</body>
</html>