2015-12-31 23:04:22 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- #docregion -->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<!-- #docregion base-href -->
|
|
|
|
<base href="/">
|
|
|
|
<!-- #enddocregion base-href -->
|
2016-04-27 14:28:22 -04:00
|
|
|
<title>Router Sample v.2</title>
|
|
|
|
<meta charset="UTF-8">
|
2016-02-03 03:35:20 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2015-12-31 23:04:22 -05:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
2016-02-27 16:48:24 -05:00
|
|
|
|
2016-04-27 14:28:22 -04:00
|
|
|
<!-- Polyfill(s) for older browsers -->
|
2016-02-27 16:48:24 -05:00
|
|
|
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
|
|
|
|
|
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>
|
2015-12-31 23:04:22 -05: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>
|
2015-12-31 23:04:22 -05:00
|
|
|
<script>
|
2016-01-28 19:15:26 -05:00
|
|
|
System.import('app/main.2') // <----- ONLY CHANGE
|
2015-12-31 23:04:22 -05:00
|
|
|
.then(null, console.error.bind(console));
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1>Milestone 2</h1>
|
|
|
|
<my-app>loading...</my-app>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
<!-- #enddocregion -->
|