-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (53 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
60 lines (53 loc) · 2.98 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
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
60
<!DOCTYPE html>
<html ng-app="app">
<head lang="en">
<meta charset="UTF-8">
<title>{{title}}</title>
<!-- include: "type": "css", "files": "<%= appCss %>" -->
<link href="dist/fonts/font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css">
<link href="dist/css/normalize.css" rel="stylesheet" type="text/css">
<link href="dist/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="bower_components/kendo-ui/styles/kendo.common-bootstrap.core.min.css" rel="stylesheet" type="text/css">
<link href="bower_components/kendo-ui/styles/kendo.bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="dist/css/main.css" rel="stylesheet" type="text/css">
<!-- /include -->
</head>
<body>
<!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/kendo-ui/js/kendo.ui.core.min.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/ngstorage/ngStorage.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
<script src="bower_components/tv4/tv4.js"></script>
<script src="bower_components/objectpath/lib/ObjectPath.js"></script>
<script src="bower_components/angular-schema-form/dist/schema-form.js"></script>
<script src="bower_components/angular-schema-form/dist/bootstrap-decorator.js"></script>
<!-- endbower -->
<!-- include: "type": "js", "files": "<%= concat.api.src %>" -->
<script src="src/js/api/Utility/Example.js"></script>
<!-- /include -->
<!-- include: "type": "js", "files": "<%= concat.plugins.src %>" -->
<script src="src/js/plugins/Example/Example.js"></script>
<!-- /include -->
<!-- include: "type": "js", "files": "<%= concat.angular.src %>" -->
<script src="src/js/app/app.js"></script>
<script src="dist/js/templates.js"></script>
<script src="src/js/app/components/components.module.js"></script>
<script src="src/js/app/components/contact/contact.module.js"></script>
<script src="src/js/app/components/home/home.module.js"></script>
<script src="src/js/app/core/core.module.js"></script>
<script src="src/js/app/core/layout/layout.module.js"></script>
<script src="src/js/app/core/services/services.module.js"></script>
<script src="src/js/app/form-engine/form-engine.module.js"></script>
<script src="src/js/app/core/services/form.service.js"></script>
<script src="src/js/app/core/services/router.service.js"></script>
<script src="src/js/app/components/contact/contact.controller.js"></script>
<script src="src/js/app/components/home/home.controller.js"></script>
<script src="src/js/app/core/layout/layout.controller.js"></script>
<!-- /include -->
<div ui-view autoscroll="false"></div>
</body>
</html>