-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·59 lines (48 loc) · 2.91 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
53
54
55
56
57
58
59
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="bower_components/angular-ui-grid/ui-grid.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body ng-app="angularYiiApp">
<div ui-view="navbar" ng-cloak=""></div>
<div class="container">
<div class="well" ui-view="content"></div>
</div>
<!-- SPELLS -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/angular/angular.min.js"></script>
<script src="node_modules/angular-route/angular-route.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="node_modules/angular-translate/dist/angular-translate.min.js"></script>
<script src="node_modules/angular-local-storage/dist/angular-local-storage.min.js"></script>
<script src="node_modules/angular-dynamic-locale/tmhDynamicLocale.min.js"></script>
<script src="node_modules/angular-resource/angular-resource.min.js"></script>
<script src="node_modules/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="node_modules/angular-cookies/angular-cookies.min.js"></script>
<script src="node_modules/angular-cache-buster/angular-cache-buster.js"></script>
<script src="node_modules/angular-translate/dist/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js"></script>
<script src="node_modules/angular-translate/dist/angular-translate-loader-partial/angular-translate-loader-partial.min.js"></script>
<script src="node_modules/bootbox/bootbox.min.js"></script>
<script src="bower_components/angular-ui-grid/ui-grid.js"></script>
<script src="app/app.js"></script>
<script src="app/app.constants.js"></script>
<script src="app/main/main.js"></script>
<script src="app/main/main.controller.js"></script>
<script src="app/brand/brand.js"></script>
<script src="app/brand/list/list.js"></script>
<script src="app/brand/list/list.controller.js"></script>
<script src="app/brand/create/create.js"></script>
<script src="app/brand/create/create.controller.js"></script>
<script src="app/brand/update/update.js"></script>
<script src="app/brand/update/update.controller.js"></script>
<script src="components/navbar/navbar.directive.js"></script>
<script src="components/navbar/navbar.controller.js"></script>
<script src="components/language/language.service.js"></script>
<script src="components/language/language.controller.js"></script>
<script src="components/brand/service.js"></script>
<script src="components/brand/resource.js"></script>
</body>
</html>