mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
67 lines
2.8 KiB
HTML
67 lines
2.8 KiB
HTML
<html>
|
|
<head>
|
|
<base href="/">
|
|
<title>Angular 2 QuickStart</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/menu.css" rel="stylesheet">
|
|
<link href="app/css/widgets.css" rel="stylesheet">
|
|
<link href="app/css/app.css" rel="stylesheet">
|
|
<link href="app/css/designer.css" rel="stylesheet">
|
|
<!-- Custom theme -->
|
|
<link rel="stylesheet" href="app/css/theme/navbar.css">
|
|
|
|
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
|
|
|
|
<!--ALFRESCO CUSTOM WEBCOMPONENTS-->
|
|
<link rel="import" href="webcomponents/file-upload/file-upload.html">
|
|
<link rel="import" href="webcomponents/alfresco-file-list/src/alfresco-file-list.html">
|
|
|
|
<!-- 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/jquery/dist/jquery.min.js"></script>
|
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<script src="app/js/dropZone.js"></script>
|
|
<script src="app/widgets/widgetUtils.js"></script>
|
|
<script src="app/widgets/widgets-container.js"></script>
|
|
<script src="app/widgets/widgets-button.js"></script>
|
|
<script src="app/widgets/widgets-input.js"></script>
|
|
<script src="app/widgets/widgets-row.js"></script>
|
|
<script src="app/widgets/widgets-col-12.js"></script>
|
|
<script src="app/widgets/widgets-col-6x6.js"></script>
|
|
<script src="app/widgets/widgets-col-8x4.js"></script>
|
|
<script src="app/widgets/widgets-col-4x4x4.js"></script>
|
|
<script src="app/widgets/widgets-col-2x6x4.js"></script>
|
|
|
|
<!-- 2. Configure SystemJS -->
|
|
<script>
|
|
System.config({
|
|
packages: {
|
|
app: {
|
|
format: 'register',
|
|
defaultExtension: 'js'
|
|
}
|
|
}
|
|
});
|
|
System.import('app/main')
|
|
.then(null, console.error.bind(console));
|
|
</script>
|
|
</head>
|
|
<!-- 3. Display the application -->
|
|
<body class="cbp-spmenu-push">
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
|
</html>
|