Skip to content

Instantly share code, notes, and snippets.

@sidthesloth92
Last active May 15, 2016 18:17
Show Gist options
  • Save sidthesloth92/9639339854db810de6a424178acf82f3 to your computer and use it in GitHub Desktop.
Save sidthesloth92/9639339854db810de6a424178acf82f3 to your computer and use it in GitHub Desktop.
<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="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment