33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|  | <!DOCTYPE html> | ||
|  | <!-- #docplaster --> | ||
|  | <!-- #docregion --> | ||
|  | <html> | ||
|  | 
 | ||
|  |   <head> | ||
|  |     <title>Hero Form</title> | ||
|  |     <!-- #docregion bootstrap --> | ||
|  |     <link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css"> | ||
|  |     <!-- #enddocregion bootstrap --> | ||
|  |     <!-- #docregion styles --> | ||
|  |     <link rel="stylesheet" href="styles.css"> | ||
|  |     <!-- #enddocregion styles --> | ||
|  | 
 | ||
|  |     <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script> | ||
|  |     <script src="node_modules/angular2/bundles/angular2.umd.js"></script> | ||
|  |     <!-- #docregion scripts-hero, scripts-hero-form --> | ||
|  |     <script src='app/hero.js'></script> | ||
|  |     <!-- #enddocregion scripts-hero --> | ||
|  |     <script src='app/hero-form.component.js'></script> | ||
|  |     <!-- #enddocregion scripts-hero-form --> | ||
|  |     <!-- #docregion scripts, scripts-hero, scripts-hero-form --> | ||
|  |     <script src='app/app.js'></script> | ||
|  |     <script src='app/boot.js'></script> | ||
|  |     <!-- #enddocregion scripts, scripts-hero, scripts-hero-form --> | ||
|  |   </head> | ||
|  | 
 | ||
|  |   <body> | ||
|  |     <my-app>Loading...</my-app> | ||
|  |   </body> | ||
|  | 
 | ||
|  | </html> |