This repository was archived by the owner on Mar 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (37 loc) · 1.43 KB
/
index.html
File metadata and controls
45 lines (37 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
<html>
<body>
<!-- Breakpoint calculators -->
<div class="device-xs visible-xs"></div>
<div class="device-sm visible-sm"></div>
<div class="device-md visible-md"></div>
<div class="device-lg visible-lg"></div>
<base href="/" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="/dist/components.css">
<link rel="stylesheet" href="/bootstrapper/bootstrapper.css">
<div>
<ts-app></ts-app>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.35.1/es6-shim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reflect-metadata/0.1.3/Reflect.min.js"></script>
<script src="/node_modules/zone.js/dist/zone.min.js"></script>
<script src="/node_modules/traceur/bin/traceur-runtime.js"></script>
<script src="/node_modules/systemjs/dist/system.js"></script>
<script>
System.config({
baseURL: '/',
});
</script>
<script src="/system.config.js"></script>
<script src="/bootstrapper/vendor.bundle.js"></script>
<script src="/bootstrapper/renovo.bundle.js"></script>
<script src="/bootstrapper/app.bundle.js"></script>
<script>
System.import('angular').then(angular => {
window.angular = angular;
System.import('app');
});
</script>
</body>
</html>