This repository has been archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
94 lines (87 loc) · 4.4 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>hawtio-ui</title>
<base href='/'>
<meta charset="UTF8">
<!-- CSS -->
<!-- datatables -->
<link rel="stylesheet" href="node_modules/datatables.net-dt/css/jquery.dataTables.css">
<!-- patternfly 3 -->
<link rel="stylesheet" href="node_modules/patternfly/dist/css/patternfly.min.css">
<link rel="stylesheet" href="node_modules/patternfly/dist/css/patternfly-additions.min.css">
<!-- patternfly 4 -->
<link rel="stylesheet" href="node_modules/@hawtio/core/dist/css/patternfly.css">
<!-- codemirror -->
<link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css">
<!-- @hawtio/core -->
<link rel="stylesheet" href="node_modules/@hawtio/core/dist/hawtio-core.css">
<!-- @hawtio/ui -->
<link rel="stylesheet" href="dist/hawtio-ui.css">
<!-- JAVASCRIPT -->
<!-- jquery -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- datatables -->
<script src="node_modules/datatables.net/js/jquery.dataTables.js"></script>
<script src="node_modules/datatables.net-select/js/dataTables.select.js"></script>
<!-- bootstrap -->
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- patternfly -->
<script src="node_modules/patternfly/dist/js/patternfly.min.js"></script>
<!-- angular -->
<script src="node_modules/angular/angular.js"></script>
<!-- angular-animate -->
<script src="node_modules/angular-animate/angular-animate.js"></script>
<!-- angular-sanitize -->
<script src="node_modules/angular-sanitize/angular-sanitize.js"></script>
<!-- angular-route -->
<script src="node_modules/angular-route/angular-route.min.js"></script>
<!-- angular-ui-bootstrap -->
<script src="node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js"></script>
<!-- angular-drag-and-drop-lists -->
<script src="node_modules/angular-drag-and-drop-lists/angular-drag-and-drop-lists.min.js"></script>
<!-- angular-datatables -->
<script src="node_modules/angularjs-datatables/dist/angular-datatables.min.js"></script>
<script src="node_modules/angularjs-datatables/dist/plugins/select/angular-datatables.select.min.js"></script>
<!-- angular-patternfly -->
<script src="node_modules/angular-patternfly/dist/angular-patternfly.js"></script>
<!-- lodash -->
<script src="node_modules/lodash/lodash.min.js"></script>
<!-- urijs -->
<script src="node_modules/urijs/src/URI.min.js"></script>
<!-- js-logger -->
<script src="node_modules/js-logger/src/logger.min.js"></script>
<!-- clipboard -->
<script src="node_modules/clipboard/dist/clipboard.js"></script>
<!-- marked -->
<script src="node_modules/marked/lib/marked.js"></script>
<!-- js-beautify -->
<script src="node_modules/js-beautify/js/lib/beautify.js"></script>
<script src="node_modules/js-beautify/js/lib/beautify-html.js"></script>
<!-- codemirror -->
<script src="node_modules/codemirror/lib/codemirror.js"></script>
<script src="node_modules/codemirror/addon/edit/closetag.js"></script>
<script src="node_modules/codemirror/addon/edit/continuelist.js"></script>
<script src="node_modules/codemirror/addon/edit/matchbrackets.js"></script>
<script src="node_modules/codemirror/addon/fold/foldcode.js"></script>
<script src="node_modules/codemirror/addon/fold/brace-fold.js"></script>
<script src="node_modules/codemirror/addon/fold/xml-fold.js"></script>
<script src="node_modules/codemirror/mode/javascript/javascript.js"></script>
<script src="node_modules/codemirror/mode/xml/xml.js"></script>
<script src="node_modules/codemirror/mode/css/css.js"></script>
<script src="node_modules/codemirror/mode/htmlmixed/htmlmixed.js"></script>
<script src="node_modules/codemirror/mode/markdown/markdown.js"></script>
<script src="node_modules/codemirror/mode/diff/diff.js"></script>
<script src="node_modules/codemirror/mode/properties/properties.js"></script>
<script src="node_modules/codemirror/mode/clike/clike.js"></script>
<script src="node_modules/codemirror/mode/yaml/yaml.js"></script>
<!-- @hawtio/core -->
<script src="node_modules/@hawtio/core/dist/hawtio-core.js"></script>
<!-- @hawtio/ui -->
<script src="dist/hawtio-ui.js"></script>
<script src="test-dist/hawtio-ui-test.js"></script>
</head>
<body>
<hawtio-app></hawtio-app>
</body>
</html>