2015-09-09 14:20:43 -07:00
|
|
|
<!DOCTYPE html>
|
2015-09-15 01:28:29 -07:00
|
|
|
<!-- #docregion -->
|
2015-09-09 14:20:43 -07:00
|
|
|
<html>
|
|
|
|
<head>
|
2015-10-16 01:06:56 -07:00
|
|
|
<title>Angular 2 QuickStart</title>
|
2016-04-27 11:28:22 -07:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2016-02-27 13:48:24 -08:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
2015-12-10 18:29:14 -08:00
|
|
|
|
|
|
|
<!-- 1. Load libraries -->
|
2016-04-27 11:28:22 -07:00
|
|
|
<!-- #docregion libraries -->
|
2016-01-17 19:59:34 -08:00
|
|
|
<!-- #docregion ie-polyfills -->
|
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/client/shim.min.js"></script>
|
2016-01-17 19:59:34 -08:00
|
|
|
<!-- #enddocregion ie-polyfills -->
|
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-10 18:29:14 -08:00
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
2015-10-03 12:04:11 -07:00
|
|
|
<!-- #enddocregion libraries -->
|
2015-12-10 18:29:14 -08:00
|
|
|
|
|
|
|
<!-- 2. Configure SystemJS -->
|
2015-10-03 12:04:11 -07:00
|
|
|
<!-- #docregion systemjs -->
|
2016-04-27 11:28:22 -07:00
|
|
|
<script src="systemjs.config.js"></script>
|
2015-09-09 14:20:43 -07:00
|
|
|
<script>
|
2016-05-11 18:31:34 -07:00
|
|
|
System.import('app').catch(function(err){ console.error(err); });
|
2015-09-09 14:20:43 -07:00
|
|
|
</script>
|
2015-10-03 12:04:11 -07:00
|
|
|
<!-- #enddocregion systemjs -->
|
|
|
|
</head>
|
|
|
|
|
2015-12-10 18:29:14 -08:00
|
|
|
<!-- 3. Display the application -->
|
|
|
|
<!-- #docregion my-app -->
|
2015-10-03 12:04:11 -07:00
|
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
2015-09-09 14:20:43 -07:00
|
|
|
</body>
|
2015-12-10 18:29:14 -08:00
|
|
|
<!-- #enddocregion my-app -->
|
2015-12-15 11:38:42 +00:00
|
|
|
</html>
|