Last active
June 22, 2016 19:09
-
-
Save squadwuschel/baa54a9881dedbb8dd66a9360203ca00 to your computer and use it in GitHub Desktop.
Angular 2 RC1 index.html
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> | |
<meta charset="utf-8" /> | |
<title>My ASP.NET Application</title> | |
@Styles.Render("~/Content/css") | |
<!-- Polyfill(s) for older browsers like IE --> | |
<script src="~/Scripts/shim.min.js"></script> | |
<!-- 1. Load libraries --> | |
<script src="~/Scripts/zone.js"></script> | |
<script src="~/Scripts/Reflect.js"></script> | |
<script src="~/Scripts/system.src.js"></script> | |
<script src="~/Scripts/systemjs.config.js"></script> | |
<script> | |
System.import('ScriptsApp/boot').catch(console.error.bind(console)); | |
</script> | |
</head> | |
<body> | |
<div class="container body-content"> | |
<div class="jumbotron"> | |
<my-app></my-app></div> | |
@RenderBody() | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment