33 lines
978 B
HTML
33 lines
978 B
HTML
<!-- #docregion -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Angular Hello World</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<!-- 1. Load libraries -->
|
|
<!-- Polyfills for older browsers -->
|
|
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/zone.js@0.6.25"></script>
|
|
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
|
|
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js"></script>
|
|
<script src="https://unpkg.com/typescript@2.0.3/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>
|
|
<hello-world>Loading...</hello-world>
|
|
</body>
|
|
|
|
</html>
|