47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<script>
|
|
var boot = 'app/boot'+'.1'; // choices: '.1', '.2', '.3', ''
|
|
</script>
|
|
<!-- #docregion -->
|
|
<html>
|
|
<head>
|
|
<!-- #docregion base-href -->
|
|
<base href="/">
|
|
<!-- #enddocregion base-href -->
|
|
<title>Router Sample</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<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>
|
|
<!-- #docregion router-lib -->
|
|
<script src="node_modules/angular2/bundles/router.dev.js"></script>
|
|
<!-- #enddocregion router-lib -->
|
|
<script>
|
|
System.config({
|
|
packages: {
|
|
app: {
|
|
format: 'register',
|
|
defaultExtension: 'js'
|
|
}
|
|
}
|
|
});
|
|
System.import('app/boot')
|
|
.then(null, console.error.bind(console));
|
|
</script>
|
|
<script>
|
|
System.config({
|
|
packages: {'app': {defaultExtension: 'js'}}
|
|
});
|
|
// window.boot is for our testing; you should just use 'app/boot'
|
|
System.import(window.boot||'app/boot').catch(console.log.bind(console));
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<my-app>loading...</my-app>
|
|
</body>
|
|
|
|
</html>
|
|
<!-- #enddocregion -->
|