First version of the Kitalpha website

First version of the Kitalpha website

Change-Id: I98069b69faba462de0e9450645ba674d5ccbe80b
diff --git a/_projectCommon.php b/_projectCommon.php
deleted file mode 100644
index 7cdaad0..0000000
--- a/_projectCommon.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2014 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Denis Roy (Eclipse Foundation) - initial implementation
- *******************************************************************************/
-
-	# Common variables or HTML content can be stored here
-
-?>
diff --git a/index.php b/index.php
deleted file mode 100644
index ae8c6e7..0000000
--- a/index.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2014 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Denis Roy (Eclipse Foundation) - initial implementation
- *******************************************************************************/
-
-        require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-        require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
-        require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
-        $App    = new App();
-        $Menu   = new Menu();
-        $Nav = new Nav();
-        include($App->getProjectCommon());
-
-        #
-        # Begin: page-specific settings.  Change these. 
-        $pageTitle              = "Polarsys - Kitalpha Project";
-        $pageKeywords           = "Polarsys,Kitalpha";
-        $pageAuthor             = "Your name";
-
-
-        $html = <<<EOF
-        <h2>About this template</h2>
-        <p>This is simply a blank template.  You can place common elements in _projectCommon.php as it is referenced by this file.</p>
-        <p>For help with the template, you can <a href="https://polarsys.org/cgit/cgit.cgi/polarsys.org">browse other Polarsys project website code</a>, read
-        about the <a href="https://polarsys.org/wiki/The_Forge">Polarsys Forge</a> or ask webmaster@eclipse.org.</p>
-
-EOF;
-
-
-        $App->generatePage("polarsys", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>