-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (40 loc) · 1.67 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
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<title>Maveyyl Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- Angular2 -->
<!-- IE required polyfill -->
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.umd.js"></script>
<script src="node_modules/angular2/bundles/angular2-all.umd.js"></script>
<script src="node_modules/angular2/bundles/router.dev.js"></script>
<!-- jquery -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- bootstrap -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" >
<script src='node_modules/bootstrap/dist/js/bootstrap.min.js'></script>
<!-- require -->
<!-- <script src="lib/require/2.2.0/require.min.js"></script> -->
<!-- Angular2 specific modules -->
<!-- <script src='app/graphUtils.js'></script> -->
<script src='app/homeTest.component.js'></script>
<script src='app/qLearningExperiment1.component.js'></script>
<script src='app/qLearningExperiment2.component.js'></script>
<script src='app/mnist.component.js'></script>
<script src='app/app.component.js'></script>
<script src='app/main.js'></script>
<!-- other -->
<!-- <script src="lib/d3/3.5.16/d3.min.js"></script> -->
<!-- <script src="lib/phaser/2.4.8/phaser.js"></script> -->
</head>
<!-- Mandatory for Angular2 router -->
<base href="/">
<body>
<!-- Element that will contain Angular2 app -->
<maveyyl-website-app>Loading...</maveyyl-website-app>
</body>
</html>