This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Getting started with ASPNET Core 1 and Angular 2</title> | |
<!--Styles bundle--> | |
<link href="css/styles.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<header> | |
<div class="container"> | |
<h1>Getting started with ASPNET Core 1 and Angular 2</h1> | |
<h3>wwww.softwarejuancarlos.com</h3> | |
</div> | |
</header> | |
<script src="https://gist.github.com/softwarejc/f5cc7ed938f12378f902.js"></script> | |
<!--Use angular "hello" component--> | |
<div class="container"> | |
<hello>Loading...</hello> | |
</div> | |
<!--Dependencies bundle--> | |
<script src="scripts/deps.min.js"></script> | |
<script> | |
// Load all app js files | |
System.config({ | |
"transpiler": false, | |
"packages": { | |
"app": {defaultExtension: 'js'} | |
} | |
}); | |
// Run app | |
System.import('./app/bootstrap').then(null, console.error.bind(console)); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment