2015-07-09 10:25:58 -07:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<title>Routing Example</title>
|
2017-02-22 22:00:01 -08:00
|
|
|
<link rel="stylesheet" type="text/css" href="./css/gumby.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="./css/app.css">
|
2019-02-01 14:27:13 +01:00
|
|
|
<base href="/">
|
2015-07-09 10:25:58 -07:00
|
|
|
<body>
|
|
|
|
<inbox-app>
|
|
|
|
Loading...
|
|
|
|
</inbox-app>
|
|
|
|
</body>
|
2019-02-01 14:27:13 +01:00
|
|
|
<!--
|
|
|
|
We are manually loading the scripts because we don't use ConcatJS for this example.
|
|
|
|
This is because we want to use SystemJS instead of RequireJS and want to support
|
|
|
|
lazy loading of routes. Read more in the "load-app.js" file.
|
|
|
|
-->
|
|
|
|
<script src="ngdeps/node_modules/zone.js/dist/zone.js"></script>
|
|
|
|
<script src="ngdeps/node_modules/reflect-metadata/Reflect.js"></script>
|
|
|
|
<script src="ngdeps/node_modules/systemjs/dist/system.js"></script>
|
|
|
|
<script src="angular/modules/playground/systemjs-config.js"></script>
|
|
|
|
<script src="load-app.js"></script>
|
2015-07-09 10:25:58 -07:00
|
|
|
</html>
|