28 lines
786 B
HTML
28 lines
786 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
|
||
|
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
|
||
|
<script src="node_modules/angular2/es6/dev/src/testing/shims_for_IE.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.js"></script>
|
||
|
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<my-heroes></my-heroes>
|
||
|
<script>
|
||
|
System.config({
|
||
|
packages: {
|
||
|
'app': {defaultExtension: 'js'}
|
||
|
}
|
||
|
});
|
||
|
System.import('app/bootstrap.js');
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|