| .. | .. |
|---|
| 3 | 3 | <head> |
|---|
| 4 | 4 | <title>SeCuris server</title> |
|---|
| 5 | 5 | <base href="<%= pageContext.getServletContext().getContextPath() %>/"> |
|---|
| 6 | | - <meta charset="utf-8"> |
|---|
| 7 | 6 | <meta charset="UTF-8"> |
|---|
| 8 | 7 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
|---|
| 9 | 8 | <link rel="icon" href="assets/favicon.png" sizes="32x29" type="image/png"> |
|---|
| 10 | | - <base href="/"> |
|---|
| 9 | + |
|---|
| 10 | + <script src="jspm_packages/system.js"></script> |
|---|
| 11 | 11 | |
|---|
| 12 | | -<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.min.js"></script> --> |
|---|
| 13 | | - |
|---|
| 14 | | - <!-- Polyfill(s) for older browsers --> |
|---|
| 15 | | - <script src="node_modules/core-js/client/shim.min.js"></script> |
|---|
| 16 | | - <script src="node_modules/hammerjs/hammer.min.js"></script> |
|---|
| 17 | | - |
|---|
| 18 | | - <script src="node_modules/zone.js/dist/zone.js"></script> |
|---|
| 19 | | - <script src="node_modules/systemjs/dist/system.src.js"></script> |
|---|
| 20 | | - |
|---|
| 21 | | - <script src="systemjs.config.js"></script> |
|---|
| 12 | + <script src="main-bundle.js.gz"></script> |
|---|
| 13 | + <script src="jspm.browser.js"></script> |
|---|
| 14 | + <script src="jspm.config.js"></script> |
|---|
| 22 | 15 | <script> |
|---|
| 23 | | - System.import('main').catch(function(err){ console.error(err); }); |
|---|
| 16 | + System.import('src/main.js').catch(function(err){ console.error(err); }); |
|---|
| 24 | 17 | </script> |
|---|
| 25 | 18 | |
|---|
| 26 | 19 | <!-- Load the Covalent platform stylesheet --> |
|---|
| 27 | 20 | <link href="assets/securis.css" rel="stylesheet"> |
|---|
| 28 | | - <link href="node_modules/@covalent/core/common/platform.css" rel="stylesheet"> |
|---|
| 21 | + <link href="assets/theming/platform.css" rel="stylesheet"> |
|---|
| 29 | 22 | |
|---|
| 30 | 23 | <!-- Load the Covalent/Material prebuilt theme --> |
|---|
| 31 | | - <link href="node_modules/@covalent/core/theming/prebuilt/blue-orange.css" rel="stylesheet"> |
|---|
| 32 | | - <link href="node_modules/ng2-toastr/bundles/ng2-toastr.min.css" rel="stylesheet" /> |
|---|
| 24 | + <link href="assets/theming/blue-orange.css" rel="stylesheet"> |
|---|
| 25 | + |
|---|
| 26 | + <link href="assets/ng2-toastr.min.css" rel="stylesheet" /> |
|---|
| 33 | 27 | <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> |
|---|
| 34 | 28 | </head> |
|---|
| 35 | 29 | |
|---|