2016-03-17 10:07:54 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2016-03-24 15:30:26 -04:00
|
|
|
<head>
|
|
|
|
<base href="/">
|
2016-04-27 14:28:22 -04:00
|
|
|
<title>Testing Tour of Heroes</title>
|
|
|
|
<meta charset="UTF-8">
|
2016-03-24 15:30:26 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
2016-04-27 14:28:22 -04:00
|
|
|
|
|
|
|
<!-- Polyfill(s) for older browsers -->
|
2016-03-24 15:30:26 -04:00
|
|
|
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
|
2016-03-17 10:07:54 -04:00
|
|
|
|
2016-04-27 14:28:22 -04:00
|
|
|
<script src="node_modules/zone.js/dist/zone.js"></script>
|
|
|
|
<script src="node_modules/reflect-metadata/Reflect.js"></script>
|
2016-03-24 15:30:26 -04:00
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
2016-04-27 14:28:22 -04:00
|
|
|
|
|
|
|
<script src="systemjs.config.js"></script>
|
2016-03-24 15:30:26 -04:00
|
|
|
<script>
|
2016-04-27 14:28:22 -04:00
|
|
|
System.import('app').catch(function(err){ console.error(err); });
|
2016-03-24 15:30:26 -04:00
|
|
|
</script>
|
|
|
|
</head>
|
2016-03-17 10:07:54 -04:00
|
|
|
|
2016-03-24 15:30:26 -04:00
|
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
2016-04-14 13:36:38 -04:00
|
|
|
<hr>
|
|
|
|
<my-if-parent-comp>Loading MyIfParentComp ...</my-if-parent-comp>
|
2016-03-24 15:30:26 -04:00
|
|
|
</body>
|
2016-03-17 10:07:54 -04:00
|
|
|
</html>
|