2015-12-23 09:42:57 -08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<!-- #docregion head -->
|
2016-06-10 09:37:33 -07:00
|
|
|
<!-- #docregion base-href -->
|
2015-12-23 09:42:57 -08:00
|
|
|
<head>
|
|
|
|
<base href="/">
|
|
|
|
<!-- #enddocregion base-href -->
|
2016-09-20 05:24:40 +02:00
|
|
|
<title>Angular Tour of Heroes</title>
|
2016-04-27 11:28:22 -07:00
|
|
|
<meta charset="UTF-8">
|
2015-12-23 09:42:57 -08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<!-- #enddocregion head -->
|
|
|
|
<!-- #docregion css -->
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<!-- #enddocregion css -->
|
|
|
|
<!-- #docregion head -->
|
2016-04-27 11:28:22 -07:00
|
|
|
<!-- Polyfill(s) for older browsers -->
|
2016-05-19 16:37:54 -07:00
|
|
|
<script src="node_modules/core-js/client/shim.min.js"></script>
|
2015-12-23 09:42:57 -08:00
|
|
|
|
2016-04-27 11:28:22 -07:00
|
|
|
<script src="node_modules/zone.js/dist/zone.js"></script>
|
|
|
|
<script src="node_modules/reflect-metadata/Reflect.js"></script>
|
2015-12-23 09:42:57 -08:00
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
2016-04-27 11:28:22 -07:00
|
|
|
|
|
|
|
<script src="systemjs.config.js"></script>
|
2015-12-23 09:42:57 -08:00
|
|
|
<script>
|
2016-05-11 18:31:34 -07:00
|
|
|
System.import('app').catch(function(err){ console.error(err); });
|
2015-12-23 09:42:57 -08:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<!-- #enddocregion head -->
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
|
|
|
</html>
|