1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/index.html

48 lines
2.3 KiB
HTML
Raw Normal View History

2016-03-12 19:53:19 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
2016-03-13 01:11:19 +08:00
<base href="/" />
2016-03-12 19:53:19 +08:00
<meta charset="UTF-8">
<title>PiGallery2</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
2016-03-12 21:57:22 +08:00
<!-- IE required polyfills, in this exact order - ->
2016-03-12 19:53:19 +08:00
<script src="../node_modules/es6-shim/es6-shim.min.js"></script>
<script src="../node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="../node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
<script src="../node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="../node_modules/systemjs/dist/system.src.js"></script>
<script src="../node_modules/rxjs/bundles/Rx.js"></script>
<script src="../node_modules/angular2/bundles/angular2.dev.js"></script>
2016-03-13 01:11:19 +08:00
<!-- IE required polyfills, in this exact order - ->
2016-03-12 21:57:22 +08:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script>
<script src="https://npmcdn.com/angular2@2.0.0-beta.9/es6/dev/src/testing/shims_for_IE.js"></script>
2016-03-12 19:53:19 +08:00
2016-03-12 21:57:22 +08:00
<script src="https://code.angularjs.org/2.0.0-beta.9/angular2-polyfills.js"></script>
<script src="https://code.angularjs.org/tools/system.js"></script>
<script src="https://npmcdn.com/typescript@1.8.2/lib/typescript.js"></script>
<script src="https://code.angularjs.org/2.0.0-beta.9/Rx.js"></script>
<script src="https://code.angularjs.org/2.0.0-beta.9/angular2.dev.js"></script>
<script src="https://code.angularjs.org/2.0.0-beta.9/router.dev.js"></script>
2016-03-13 01:11:19 +08:00
<!-- <script>
2016-03-12 19:53:19 +08:00
System.config({
2016-03-12 21:57:22 +08:00
map: {
"ts": "../node_modules/typescript/lib/plugin.js",
"typescript": "../node_modules/typescript/lib/typescript.js"
},
transpiler: 'typescript',
typescriptOptions: { emitDecoratorMetadata: true },
packages: {'app': {defaultExtension: 'ts'}}
2016-03-12 19:53:19 +08:00
});
2016-03-12 21:57:22 +08:00
System.import('main.ts')
2016-03-12 19:53:19 +08:00
.then(null, console.error.bind(console));
</script>
2016-03-13 01:11:19 +08:00
-->
2016-03-12 19:53:19 +08:00
<body>
2016-03-12 21:57:22 +08:00
<pi-gallery2-app>Loading...</pi-gallery2-app>
2016-03-12 19:53:19 +08:00
</body>
2016-03-18 23:02:26 +08:00
<script src="https://code.angularjs.org/2.0.0-beta.10/angular2-polyfills.js"></script>
2016-03-13 01:11:19 +08:00
<script src="dist/app-bundle.js"></script>
2016-03-12 19:53:19 +08:00
</html>