mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
71 lines
2.2 KiB
HTML
71 lines
2.2 KiB
HTML
<!-- DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>ng2-alfresco-userinfo Angular 2</title>
|
|
<base href="/">
|
|
|
|
<!-- Google Material Design Lite --
|
|
<link rel="stylesheet" href="assets/material.orange-blue.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">
|
|
|
|
|
|
<!-- Polyfill(s) for older browsers --
|
|
<script src="node_modules/core-js/client/shim.min.js"></script>
|
|
<script src="node_modules/zone.js/dist/zone.js"></script>
|
|
<script src="node_modules/reflect-metadata/Reflect.js"></script>
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
|
|
<!-- Additional Alfresco libraries --
|
|
<script src="node_modules/alfresco-js-api/dist/alfresco-js-api.js"></script>
|
|
|
|
<script src="systemjs.config.js"></script>
|
|
<script>
|
|
System.import('app').catch(function(err){ console.error(err); });
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<my-app>
|
|
<div id="loader-spin" class="mdl-progress mdl-js-progress mdl-progress__indeterminate"></div>
|
|
</my-app>
|
|
</body>
|
|
|
|
</html -->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>document.write('<base href="' + document.location + '" />');</script>
|
|
<title>NgModule Minimal</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<!-- Polyfill(s) for older browsers -->
|
|
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/zone.js@0.6.25?main=browser"></script>
|
|
<script src="https://unpkg.com/reflect-metadata@0.1.3"></script>
|
|
<script src="https://unpkg.com/systemjs@0.19.27/dist/system.src.js"></script>
|
|
|
|
<script src="systemjs.config.js"></script>
|
|
<script>
|
|
System.import('app/main.0').catch(function(err){ console.error(err); });
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<my-app>Loading...</my-app>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
<!--
|
|
Copyright 2016 Google Inc. All Rights Reserved.
|
|
Use of this source code is governed by an MIT-style license that
|
|
can be found in the LICENSE file at http://angular.io/license
|
|
--> |