28 lines
844 B
HTML
28 lines
844 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Hello Angular</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {color:#369;font-family: Arial,Helvetica,sans-serif;}
|
|
</style>
|
|
|
|
<!-- Polyfills for older browsers -->
|
|
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/zone.js@0.7.2?main=browser"></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="systemjs.config.web.js"></script>
|
|
<script>
|
|
System.import('app').catch(function(err){ console.error(err); });
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<my-app>Loading AppComponent content here ...</my-app>
|
|
</body>
|
|
|
|
</html> |