-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
81 lines (71 loc) · 3.77 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
<!DOCTYPE html>
<!--
Copyright (c) 2014, 2017, Oracle and/or its affiliates.
The Universal Permissive License (UPL), Version 1.0
-->
<html lang="en-us">
<head>
<title>REST Consuming Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="css/images/favicon.ico" type="image/x-icon" />
<!-- This is the main css file for the default Alta theme -->
<!-- injector:theme -->
<link rel="stylesheet" href="css/libs/oj/v3.2.0/alta/oj-alta-min.css" type="text/css"/>
<!-- endinjector -->
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<!-- This contains icon fonts used by the starter template -->
<link rel="stylesheet" href="css/demo-alta-site-min.css" type="text/css"/>
<!-- This is where you would add any app specific styling -->
<link rel="stylesheet" href="css/override.css" type="text/css"/>
</head>
<body>
<!-- Template for rendering navigation items shared between nav bar and nav list -->
<script type="text/html" id="navTemplate">
<li><a href="#">
<span data-bind="css: $data['iconClass']"></span>
<!-- ko text: $data['name'] --> <!--/ko-->
</a></li>
</script>
<div id="globalBody" >
<div id="navDrawer" class="oj-contrast-marker oj-web-applayout-offcanvas oj-offcanvas-start">
<div role="navigation" data-bind="click: toggleDrawer, ojComponent: {component: 'ojNavigationList',
navigationLevel: 'application', item: {template: 'navTemplate'}, data: navDataSource,
selection: router.stateId, edge: 'start'}">
</div>
</div>
<div id="pageContent" role="main" class="oj-web-applayout-page">
<header role="banner" class="oj-web-applayout-header">
<div class="oj-web-applayout-max-width oj-flex-bar oj-sm-align-items-center">
<!-- Offcanvas toggle button -->
<div class="oj-flex-bar-start oj-md-hide">
<button id="drawerToggleButton" class="oj-button-lg" data-bind="click: toggleDrawer,
ojComponent: {component:'ojButton', label: 'Application Navigation',
chroming: 'half', display: 'icons', icons: {start: 'oj-web-applayout-offcanvas-icon'}}">
</button>
</div>
<div data-bind="css: smScreen() ? 'oj-flex-bar-center-absolute' : 'oj-flex-bar-middle oj-sm-align-items-baseline'">
<h1 class="oj-web-applayout-header-title" title="Demo" data-bind="text: appName"></h1>
</div>
</div>
<div role="navigation" class="oj-web-applayout-max-width oj-web-applayout-navbar">
<div data-bind="ojComponent: {component: 'ojNavigationList',
navigationLevel: 'application',
item: {template: 'navTemplate'}, data: navDataSource,
selection: router.stateId, edge: 'top'}"
class="oj-web-applayout-navbar oj-sm-only-hide oj-md-condense oj-md-justify-content-flex-end">
</div>
</div>
</header>
<div id="panelPage">
<div class="oj-flex ">
<div role="main" class="oj-panel oj-panel-alt1 oj-margin demo-mypanel oj-web-applayout-max-width oj-web-applayout-content" data-bind="ojModule: router.moduleConfig">
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/libs/require/require.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>