34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!-- #docregion -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Angular 2 Todos</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- 1. Load libraries -->
|
|
<!-- Polyfill(s) for older browsers -->
|
|
<script src="https://npmcdn.com/core-js/client/shim.min.js"></script>
|
|
|
|
<script src="https://npmcdn.com/zone.js@0.6.12"></script>
|
|
<script src="https://npmcdn.com/reflect-metadata@0.1.3"></script>
|
|
<script src="https://npmcdn.com/systemjs@0.19.27/dist/system.src.js"></script>
|
|
<script src="https://npmcdn.com/typescript@1.8.10/lib/typescript.js"></script>
|
|
|
|
<!-- 2. Configure SystemJS -->
|
|
<script src="systemjs.config.js"></script>
|
|
<script>
|
|
System.import('app').catch(function(err){ console.error(err); });
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<!-- Display the application -->
|
|
<body>
|
|
<todo-app class="container" style="display: block">Loading...</todo-app>
|
|
</body>
|
|
|
|
</html>
|