Georgios Kalpakas b836aca999 docs(aio): rework of the upgrade guide
This commit was worked on by a number of people including
@filipesilva, @gkalpak and @wardbell. It contains changes that:

* remove unused files,
* fix the bootstrap approach to ensure that bootstrap is in the correct Zone
* fix unclosed code-example tags
* replace use of "we" with "you"
* remove broken dual router example

Related to angular/angular.io#3541
2017-05-19 09:42:17 +01:00

37 lines
1.1 KiB
HTML

<!-- #docplaster -->
<!-- #docregion full -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- #docregion base -->
<base href="/app/">
<!-- #enddocregion base -->
<title>Google Phone Gallery</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet" href="app.css" />
<script src="/node_modules/core-js/client/shim.min.js"></script>
<script src="/node_modules/zone.js/dist/zone.js"></script>
<script src="/node_modules/systemjs/dist/system.src.js"></script>
<!-- #enddocregion full -->
<script src="/systemjs.config.1.js"></script>
<!-- #docregion full
<script src="/systemjs.config.js"></script>
<script>
System.import('/app');
</script>
<!-- #enddocregion full -->
<script>
System.import('/app');
</script>
<!-- #docregion full -->
</head>
<!-- #docregion appcomponent -->
<body>
<phonecat-app></phonecat-app>
</body>
<!-- #enddocregion appcomponent -->
</html>
<!-- #enddocregion full -->