-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (89 loc) · 2.46 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
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1"
/>
<link rel="stylesheet" href="/luigi-core/luigi.css" />
<style>
/* LUIGI CUSTOM CONTAINER FEATURE */
/* [luigi-app-root] {
float: left;
width: 70%;
height: 500px;
}
.custom {
padding: 20px;
text-align: center;
}
.main {
position: relative;
overflow: hidden;
}
#my-header {
width: 100%;
height: 200px;
border: 1px solid;
}
#my-leftnav {
position: relative;
width: 20%;
height: 500px;
border: 1px solid;
float: left;
}
#my-rightnav {
position: relative;
width: 10%;
height: 500px;
border: 1px solid;
float: right;
}
#my-footer {
position: relative;
width: 100%;
height: 300px;
border: 1px solid;
}
.custom {
padding: 20px;
text-align: center;
} */
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script src="/luigi-core/luigi.js"></script>
<script src="/assets/extendedConfiguration.bundle.js"></script>
<!--
<div luigi-app-loading-indicator>
<div
class="fd-busy-indicator--m"
aria-hidden="false"
aria-label="Loading"
data-testid="luigi-loading-spinner"
>
<div class="fd-busy-indicator--circle-0"></div>
<div class="fd-busy-indicator--circle-1"></div>
<div class="fd-busy-indicator--circle-2"></div>
</div>
</div>-->
<!-- LUIGI CUSTOM CONTAINER FEATURE -->
<!-- <div class="custom" id="my-header">MY HEADER</div>
<div class="main">
<div class="custom" id="my-leftnav">MY LEFTNAV</div>
<div luigi-app-root></div>
<div luigi-app-loading-indicator>
<div class="fd-busy-indicator--m" aria-hidden="false" aria-label="Loading" data-testid="luigi-loading-spinner">
<div class="fd-busy-indicator--circle-0"></div>
<div class="fd-busy-indicator--circle-1"></div>
<div class="fd-busy-indicator--circle-2"></div>
</div>
</div>
<div class="custom" id="my-rightnav">MY RIGHTNAV</div>
</div>
<div class="custom" id="my-footer">MY FOOTER</div> -->
</body>
</html>