2015-12-14 23:31:40 -05:00
|
|
|
<!-- #docregion -->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2016-09-19 23:24:40 -04:00
|
|
|
<title>Angular Hello World</title>
|
2016-04-27 14:28:22 -04:00
|
|
|
<meta charset="UTF-8">
|
2016-02-03 03:35:20 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2016-02-27 16:48:24 -05:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
2015-12-14 23:31:40 -05:00
|
|
|
|
|
|
|
<!-- 1. Load libraries -->
|
2016-11-05 15:53:47 -04:00
|
|
|
<!-- Polyfills for older browsers -->
|
2016-08-31 01:21:47 -04:00
|
|
|
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
|
2016-01-17 22:59:34 -05:00
|
|
|
|
2016-10-12 17:41:42 -04:00
|
|
|
<script src="https://unpkg.com/zone.js@0.6.25"></script>
|
|
|
|
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
|
2016-10-21 17:31:09 -04:00
|
|
|
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
|
2016-10-12 17:41:42 -04:00
|
|
|
<script src="https://unpkg.com/typescript@2.0.3/lib/typescript.js"></script>
|
2015-12-14 23:31:40 -05:00
|
|
|
|
|
|
|
<!-- 2. Configure SystemJS -->
|
2016-04-27 14:28:22 -04:00
|
|
|
<script src="systemjs.config.js"></script>
|
2015-12-14 23:31:40 -05:00
|
|
|
<script>
|
2016-05-20 02:18:18 -04:00
|
|
|
System.import('app').catch(function(err){ console.error(err); });
|
2015-12-14 23:31:40 -05:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
2016-04-07 16:31:40 -04:00
|
|
|
|
2016-04-27 14:28:22 -04:00
|
|
|
<!-- Display the application -->
|
2015-12-14 23:31:40 -05:00
|
|
|
<body>
|
|
|
|
<hello-world>Loading...</hello-world>
|
|
|
|
</body>
|
|
|
|
|
2016-04-07 16:31:40 -04:00
|
|
|
</html>
|