This repository was archived by the owner on Nov 24, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
52 lines (45 loc) · 1.8 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
<!DOCTYPE html>
<html class="layout-pf layout-pf-fixed">
<head>
<title>hawtio-core-navigation</title>
<base href='/'>
<meta charset="UTF8">
<!-- CSS -->
<!-- patternfly -->
<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">
<!-- JAVASCRIPT -->
<!-- jquery -->
<script src="node_modules/jquery/dist/jquery.min.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-sanitize -->
<script src="node_modules/angular-sanitize/angular-sanitize.js"></script>
<!-- angular-route -->
<script src="node_modules/angular-route/angular-route.min.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>
<!-- @hawtio/core -->
<script src="node_modules/@hawtio/core/dist/hawtio-core.js"></script>
<!-- @hawtio/core-navigation -->
<script src="dist/hawtio-core-navigation.js"></script>
<script src="example/dist/hawtio-nav-example.js"></script>
</head>
<body>
<nav class="navbar navbar-pf-vertical" style="height: 60px">
</nav>
<hawtio-vertical-nav></hawtio-vertical-nav>
<div class="container-fluid container-pf-nav-pf-vertical ng-cloak"
ng-controller="HawtioNav.ViewController">
<div ng-include src="viewPartial"></div>
</div>
</body>
</html>