mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
36 lines
787 B
HTML
36 lines
787 B
HTML
<!--
|
|
EVERYTHING in index.html file will change
|
|
Don't feel like you have to learn all of this boilerplate.
|
|
It's not important and will change.
|
|
-->
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
|
|
<!-- ES6-related imports -->
|
|
<script src="lib/traceur-runtime.js"></script>
|
|
<script src="lib/es6-module-loader-sans-promises.src.js"></script>
|
|
<script src="lib/extension-register.js"></script>
|
|
<script>
|
|
register(System);
|
|
</script>
|
|
|
|
<!-- Angular2-related imports -->
|
|
<script src="lib/angular2.js"></script>
|
|
<script src="lib/zone.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<playground-main>
|
|
Loading...
|
|
</playground-main>
|
|
</body>
|
|
|
|
<!-- Application bootstrap logic -->
|
|
<script>
|
|
System.import('./main');
|
|
</script>
|
|
|
|
</html>
|