2015-12-14 23:31:40 -05:00
|
|
|
<!-- #docregion -->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2016-01-22 05:40:37 -05:00
|
|
|
<title>Angular 2 Todos</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">
|
2016-04-27 14:28:22 -04:00
|
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
|
2015-12-14 23:31:40 -05:00
|
|
|
|
|
|
|
<!-- 1. Load libraries -->
|
2016-04-27 14:28:22 -04:00
|
|
|
<!-- Polyfill(s) for older browsers -->
|
2016-05-20 02:18:18 -04:00
|
|
|
<script src="https://npmcdn.com/core-js/client/shim.min.js"></script>
|
2016-04-07 16:31:40 -04:00
|
|
|
|
2016-04-27 14:28:22 -04:00
|
|
|
<script src="https://npmcdn.com/zone.js@0.6.12"></script>
|
|
|
|
<script src="https://npmcdn.com/reflect-metadata@0.1.3"></script>
|
2016-05-20 02:18:18 -04:00
|
|
|
<script src="https://npmcdn.com/systemjs@0.19.27/dist/system.src.js"></script>
|
2016-04-27 14:28:22 -04:00
|
|
|
<script src="https://npmcdn.com/typescript@1.8.10/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-27 14:28:22 -04:00
|
|
|
<!-- Display the application -->
|
2015-12-14 23:31:40 -05:00
|
|
|
<body>
|
2016-01-22 05:40:37 -05:00
|
|
|
<todo-app class="container" style="display: block">Loading...</todo-app>
|
2015-12-14 23:31:40 -05:00
|
|
|
</body>
|
|
|
|
|
2016-04-07 16:31:40 -04:00
|
|
|
</html>
|