-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.html
48 lines (45 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>React / Redux / TypeScript / JSPM - Starter</title>
<link href="/assets/loader-styles.css" rel="stylesheet">
<link href="https://unpkg.com/blaze@3.2.0" rel="stylesheet">
</head>
<body>
<div id="app-container">
<div class="loader-container">
<div class="sk-cube-grid">
<div class="sk-cube sk-cube1"></div>
<div class="sk-cube sk-cube2"></div>
<div class="sk-cube sk-cube3"></div>
<div class="sk-cube sk-cube4"></div>
<div class="sk-cube sk-cube5"></div>
<div class="sk-cube sk-cube6"></div>
<div class="sk-cube sk-cube7"></div>
<div class="sk-cube sk-cube8"></div>
<div class="sk-cube sk-cube9"></div>
</div>
</div>
</div>
<!-- body bottom scripts -->
<!-- below section could be auto-generated and overwritten during build for prod -->
<!-- loading-app:start -->
<script src="/jspm_packages/system.js"></script>
<script src="/jspm.config.js"></script>
<script src="/temp/vendor.dev.js"></script>
<script>
// hot-reload config
SystemJS.import('systemjs-hot-reloader').then(function(HotReloader) {
// if you're running server on custom port please remember to update below
new HotReloader.default('http://localhost:3000');
});
// load main module of your app with SystemJS
SystemJS.trace = true;
SystemJS.import('/src/app');
</script>
<!-- loading-app:end -->
</body>
</html>