33 lines
		
	
	
		
			988 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			988 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!-- #docregion -->
 | |
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <title>Angular 2 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 -->
 | |
|      <!-- 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>
 | |
|     <hello-world>Loading...</hello-world>
 | |
|   </body>
 | |
| 
 | |
| </html>
 |