-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.html
More file actions
39 lines (34 loc) · 1 KB
/
Copy pathapp.html
File metadata and controls
39 lines (34 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Demo</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/bootstrap-theme.min.css" rel="stylesheet" />
<script>
document.write('<base href="' + document.location + '" />');
</script>
</head>
<body>
<div class="container">
<app></app>
</div>
<script src="/js/jquery.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/system.js"></script>
<script src="/js/typescript.js"></script>
<script src="/js/angular2-polyfills.min.js"></script>
<script src="/js/Rx.min.js"></script>
<script src="/js/angular2.min.js"></script>
<script src="/js/router.js"></script>
<script>
System.config({
transpiler: 'typescript',
typescriptOptions: { emitDecoratorMetadata: true }
});
System.import('app.js');
</script>
</body>
</html>