-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.11 KB
/
Copy pathindex.html
File metadata and controls
35 lines (32 loc) · 1.11 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
<!--This is the HTML file that gets served to the browser. It contains text-->
<!--that says "Loading..." that will disappear as soon as `bundle.js` has been-->
<!--downloaded and `lore.summon()` has finished setting up your application.-->
<!--It also contains a DOM element to hang dialogs from so they don't conflict-->
<!--with any CSS or JavaScript behaviors in the application (styling overrides-->
<!--or event bubbling cancellation).-->
<html>
<head>
<title>LoreJS Todo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
.loading-text {
text-align: center;
line-height: 100vh;
font-size: 32px;
margin: 0;
font-weight: bold;
color: rgba(0,0,0,.54);
}
</style>
</head>
<body>
<div id="root">
<h1 class="loading-text">
Loading...
</h1>
</div>
<div id="dialog"></div>
<script src="/dist/bundle.js"></script>
</body>
</html>