-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 810 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script scr="tags/app.tag" type="riot/tag"></script>
</head>
<body>
<div id="container">
</div>
<div data-hc="app/comp1">
</div>
<div data-hc="app/comp2">
</div>
<!-- riot tag -->
<app data-hc="app/riotcomp"></app>
<!-- -->
<script src="jspm_packages/system.js"></script>
<script src="jspm.config.js"></script>
<script>
SystemJS.import('app/app').then(function(app) {
app.default();
});
</script>
<!-- -->
<!-- <script src="build.js" charset="utf-8"></script> - - >
<script src="jspm_packages/system.js" charset="utf-8"></script>
<script src="jspm.config.js" charset="utf-8"></script>
<script>
System.import("app/app").then(function(main) {
main();
})
</script>
-->
</body>
</html>