-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (146 loc) · 4.64 KB
/
Copy pathindex.html
File metadata and controls
165 lines (146 loc) · 4.64 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>LSO-RTC</title>
<meta name="author" content="name" />
<meta name="description" content="LSO" />
<meta name="keywords" content="NASA,here" />
<link
rel="stylesheet"
href="https://bootswatch.com/5/darkly/bootstrap.min.css"
type="text/css"
/>
<link
rel="stylesheet"
href="./css/ckeditor5/content-styles.css"
type="text/css"
/>
</head>
<body>
<main>
<style>
body {
background-image: url('https://cdn.glitch.com/b40828b6-ccc4-4ac7-ae0a-c47770512700%2Fmoon_surface.jpg?v=1633209069879');
}
.ck-editor__editable{
color: #0d0d0d;
}
</style>
<div
class="d-flex flex-column flex-shrink-0 p-3 text-white bg-dark"
style="width: 280px;"
>
<a
href="/"
class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-white text-decoration-none"
>
<svg class="bi me-2" width="40" height="32">
<use xlink:href="#bootstrap"></use>
</svg>
<span class="fs-4">LSO-RTC</span>
</a>
<hr />
<ul class="nav nav-pills flex-column mb-auto">
<li class="nav-item">
<a href="#" class="nav-link active" aria-current="page">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#home"></use>
</svg>
Home
</a>
</li>
<li>
<a href="#" class="nav-link text-white">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#speedometer2"></use>
</svg>
Dashboard
</a>
</li>
<li>
<a href="#" class="nav-link text-white">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#table"></use>
</svg>
Orders
</a>
</li>
<li>
<a href="#" class="nav-link text-white">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#grid"></use>
</svg>
Products
</a>
</li>
<li>
<a href="#" class="nav-link text-white">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#people-circle"></use>
</svg>
Customers
</a>
</li>
</ul>
<hr />
<div class="dropdown">
<a
href="#"
class="d-flex align-items-center text-white text-decoration-none dropdown-toggle show"
id="dropdownUser1"
data-bs-toggle="dropdown"
aria-expanded="true"
>
<img
src="https://github.com/mdo.png"
alt=""
width="32"
height="32"
class="rounded-circle me-2"
/>
<strong>mdo</strong>
</a>
<ul
class="dropdown-menu dropdown-menu-dark text-small shadow show"
aria-labelledby="dropdownUser1"
data-popper-placement="top-start"
style="position: absolute; inset: auto auto 0px 0px; margin: 0px; transform: translate3d(0px, -34px, 0px);"
>
<li><a class="dropdown-item" href="#">New project...</a></li>
<li><a class="dropdown-item" href="#">Settings</a></li>
<li><a class="dropdown-item" href="#">Profile</a></li>
<li><hr class="dropdown-divider" /></li>
<li><a class="dropdown-item" href="#">Sign out</a></li>
</ul>
</div>
</div>
<!-- ckeditor requires this tag-->
<div id="editor" placeholder="Status:"></div>
</main>
<!-- JavaScript Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"
></script>
<script src="https://cdn.ckeditor.com/ckeditor5/30.0.0/classic/ckeditor.js"></script>
<script>
//
ClassicEditor
.create( document.querySelector( '#editor' ) )
.catch( error => {
console.error( error );
} );
</script>
<script>
function init() {
console.log("### in function init ###");
};
</script>
<script>
init();
</script>
</body>
</html>