-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 1.09 KB
/
index.html
File metadata and controls
30 lines (25 loc) · 1.09 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<title>4D-Matrix</title>
<!-- vendors -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/angular/angular.min.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- scripts -->
<script src="app/src/config/app.config.js"></script>
<script src="app/src/config/route.config.js"></script>
<script src="app/src/matrix/matrix.config.js"></script>
<script src="app/src/matrix/matrix-lists.service.js"></script>
<script src="app/src/matrix/matrix.controller.js"></script>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="app/src/matrix/matrix.style.css"/>
</head>
<body ng-app="4d-matrix">
<section class="container-fluid">
<div ui-view></div>
</section>
</body>
</html>