mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
64 lines
2.3 KiB
HTML
64 lines
2.3 KiB
HTML
<html>
|
|
<head>
|
|
<base href="/">
|
|
<title>File Share - Angular 2</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
|
|
<link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet">
|
|
<link href="app/css/app.css" rel="stylesheet">
|
|
<!-- Custom theme -->
|
|
<link rel="stylesheet" href="app/css/theme/navbar.css">
|
|
|
|
<!-- 1. Load libraries -->
|
|
<!-- IE required polyfills, in this exact order -->
|
|
<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>
|
|
<script src="node_modules/angular2/bundles/router.dev.js"></script>
|
|
<script src="node_modules/angular2/bundles/http.dev.js"></script>
|
|
|
|
<!--<script src="node_modules/ng2-uploader/bundles/ng2-uploader.js"></script>-->
|
|
|
|
<script src="node_modules/jquery/dist/jquery.min.js"></script>
|
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
|
|
<script src="/app/js/xml2json.js"></script>
|
|
|
|
<!-- 2. Configure SystemJS -->
|
|
<script>
|
|
System.config({
|
|
map: {
|
|
'ng2-uploader': 'node_modules/ng2-uploader',
|
|
'ng2-alfresco': 'node_modules/ng2-alfresco'
|
|
},
|
|
packages: {
|
|
app: {
|
|
format: 'register',
|
|
defaultExtension: 'js'
|
|
},
|
|
'ng2-uploader': {
|
|
format: 'register',
|
|
defaultExtension: 'js'
|
|
},
|
|
'ng2-alfresco': {
|
|
format: 'register',
|
|
defaultExtension: 'js'
|
|
}
|
|
}
|
|
});
|
|
System.import('app/main')
|
|
.then(null, console.error.bind(console));
|
|
</script>
|
|
</head>
|
|
<!-- 3. Display the application -->
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
|
</html>
|