angular-docs-cn/public/docs/_examples/toh-5/ts/index.html

35 lines
1015 B
HTML
Raw Normal View History

2015-12-23 12:42:57 -05:00
<!DOCTYPE html>
<html>
<!-- #docregion head -->
<!-- #docregion base-href -->
2015-12-23 12:42:57 -05:00
<head>
<base href="/">
<!-- #enddocregion base-href -->
<title>Angular Tour of Heroes</title>
2016-04-27 14:28:22 -04:00
<meta charset="UTF-8">
2015-12-23 12:42:57 -05:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- #enddocregion head -->
<!-- #docregion css -->
<link rel="stylesheet" href="styles.css">
<!-- #enddocregion css -->
<!-- #docregion head -->
<!-- Polyfills for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>
2015-12-23 12:42:57 -05:00
2016-04-27 14:28:22 -04:00
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
2015-12-23 12:42:57 -05:00
<script src="node_modules/systemjs/dist/system.src.js"></script>
2016-04-27 14:28:22 -04:00
<script src="systemjs.config.js"></script>
2015-12-23 12:42:57 -05:00
<script>
System.import('app').catch(function(err){ console.error(err); });
2015-12-23 12:42:57 -05:00
</script>
</head>
<!-- #enddocregion head -->
<body>
<my-app>Loading...</my-app>
</body>
</html>