From f81088473cbc7cd9a348768e3ac300e973ce3583 Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Wed, 01 Mar 2017 13:57:40 +0000
Subject: [PATCH] #3527 feature - Basic boilerplate for Angular2 and Covalent

---
 securis/src/main/webapp/index.html |   38 ++++++++++++++++++++++++++++++++++----
 1 files changed, 34 insertions(+), 4 deletions(-)

diff --git a/securis/src/main/webapp/index.html b/securis/src/main/webapp/index.html
index 967f3cb..f14ce28 100644
--- a/securis/src/main/webapp/index.html
+++ b/securis/src/main/webapp/index.html
@@ -1,5 +1,35 @@
+<!DOCTYPE html>
 <html>
-	<body>
-	<h1>SeCuris Server</h1>
-	</body>
-</html>
\ No newline at end of file
+  <head>
+    <title>Angular QuickStart</title>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <base href="/">
+    <link rel="stylesheet" href="styles.css">
+
+<!--    <script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.min.js"></script> -->
+
+    <!-- Polyfill(s) for older browsers -->
+    <script src="node_modules/core-js/client/shim.min.js"></script>
+    <script src="node_modules/hammerjs/hammer.min.js"></script>
+
+    <script src="node_modules/zone.js/dist/zone.js"></script>
+    <script src="node_modules/systemjs/dist/system.src.js"></script>
+
+    <script src="systemjs.config.js"></script>
+    <script>
+      System.import('main').catch(function(err){ console.error(err); });
+    </script>
+    
+    <!-- Load the Covalent platform stylesheet -->
+    <link href="https://unpkg.com/@covalent/core@1.0.0-beta.2/common/platform.css" rel="stylesheet">
+
+    <!-- Load the Covalent/Material prebuilt theme -->
+    <link href="https://unpkg.com/@covalent/core@1.0.0-beta.2/theming/prebuilt/blue-orange.css" rel="stylesheet">
+
+  </head>
+
+  <body>
+    <my-app>Loading AppComponent content here ...</my-app>
+  </body>
+</html>

--
Gitblit v1.3.2