Tero Parviainen ad4c521130 chore(upgrade) bring upgrade tutorial up to speed with alpha.54
- Use angular2-polyfills bundle
- Use separate upgrade bundle
- Use Rx bundle and remove superfluous SystemJS config for RxJS
- Switch to CSS file tree from ASCII
2015-12-15 14:36:37 +02:00

37 lines
1.1 KiB
HTML

<!-- #docregion -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Google Phone Gallery</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/animations.css">
<!-- #docregion scripts -->
<script src="../node_modules/systemjs/dist/system.src.js"></script>
<script src="../node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="../node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="../node_modules/rxjs/bundles/Rx.js"></script>
<script src="../node_modules/angular2/bundles/http.dev.js"></script>
<!-- #docregion ng2-router -->
<script src="../node_modules/angular2/bundles/router.dev.js"></script>
<!-- #enddocregion ng2-router -->
<script>
System.config({
packages: {
'js': {
defaultExtension: 'js'
}
}
});
System.import('js/app');
</script>
<!-- #enddocregion scripts -->
</head>
<!-- #docregion body -->
<body>
<pc-app></pc-app>
</body>
<!-- #enddocregion body -->
</html>