forked from nataliethistime/le-serf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (30 loc) · 1.02 KB
/
index.html
File metadata and controls
36 lines (30 loc) · 1.02 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
<html>
<head>
<title>KA Super UI</title>
<link rel="stylesheet" href="https://unpkg.com/bootstrap@3.4.1/dist/css/bootstrap.css" type="text/css">
<style type="text/css">
/* Fix up the messenger box to look nicer. */
.messenger-message {
width: 50%;
margin: 0 auto;
text-align: center;
}
</style>
<script>
// Le Serf checks for this variable to determine if it's running in web or CLI.
window.LE_SERF_WEB = true
</script>
</head>
<body>
<!-- This is the main container of the app. React puts all its stuff in here. -->
<div id="main"></div>
<script type="text/javascript" src="https://unpkg.com/jquery@2.2.4/dist/jquery.js"></script>
<script type="text/javascript" src="https://unpkg.com/bootstrap@3.4.1/dist/js/bootstrap.js"></script>
<script type="module" src="/lib/web/index.jsx"></script>
<script>
window.addEventListener('DOMContentLoaded', () => {
window.LeSerfLoad();
});
</script>
</body>
</html>