mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
47 lines
2.0 KiB
HTML
47 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<base href="/">
|
|
<title>Demo Application - 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">
|
|
|
|
<!-- Google Material Design Lite -->
|
|
<link rel="stylesheet" href="node_modules/material-design-lite/material.min.css">
|
|
<script src="node_modules/material-design-lite/material.min.js"></script>
|
|
<link rel="stylesheet" href="node_modules/material-design-icons/iconfont/material-icons.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/jquery/dist/jquery.min.js"></script>
|
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
|
|
<script src="/app/js/xml2json.js"></script>
|
|
<script src="node_modules/alfresco-core-rest-api/bundle.js"></script>
|
|
|
|
<!-- 2. Configure SystemJS -->
|
|
<script src="systemjs.config.js"></script>
|
|
<script>
|
|
System.import('app/main').catch(function(err){ console.error(err); });
|
|
</script>
|
|
</head>
|
|
<!-- 3. Display the application -->
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
|
</html>
|