-Initial page for EGerrit web page

Signed-off-by: Jacques Bouthillier <lmcbout@gmail.com>
diff --git a/.project b/.project
new file mode 100644
index 0000000..ab4c35f
--- /dev/null
+++ b/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>egerrit</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+	</buildSpec>
+	<natures>
+	</natures>
+</projectDescription>
diff --git a/EGerritSummary.png b/EGerritSummary.png
new file mode 100644
index 0000000..1207b81
--- /dev/null
+++ b/EGerritSummary.png
Binary files differ
diff --git a/_index.html b/_index.html
new file mode 100644
index 0000000..04c7b57
--- /dev/null
+++ b/_index.html
@@ -0,0 +1,46 @@
+<div id="bigbuttons">
+<h3>Primary Links</h3>
+<ul>
+	<li><a id="buttonDownload" href="/egerrit/download/" title="Download">Eclipse
+	Distribution, Update Site, Dropins</a></li>
+	<li><a id="buttonDocumentation" href="/egerrit/documentation/"
+		title="Documentation">Tutorials, Examples, Videos, Reference Documentation</a></li>
+	<li><a id="buttonSupport" href="/egerrit/support/" title="Support">Bug
+	Tracker, Newsgroup, Support</a></li>
+	<li><a id="buttonInvolved" href="/egerrit/developers/" title="Getting Involved">Contributor Guide, Mailing Lists, Wiki</a></li>
+</ul>
+</div>
+
+<div id="midcolumn">
+
+<h3>EGerrit</h3>
+
+<script type="text/javascript">
+          url_site = 'https://marketplace.eclipse.org/content/egerrit'
+        </script>
+        <script src="https://marketplace.eclipse.org/content/egerrit" type="text/javascript"></script>
+<br/>
+<a href="/projects/project_summary.php?projectid=technology.egerrit">About This Project</a>
+
+<p>
+EGerrit is an Eclipse Team project to perform a code review with Eclipse IDE. 
+</p>
+
+<p>The EGit project is implementing Eclipse tooling on top of the
+<a href="http://www.eclipse.org/jgit/">JGit</a> Java implementation of Git.
+</p>
+
+<p>
+	<img src="EGerritSummary.png" alt="EGerrit screenshot">
+</p>
+</div>
+
+<div id="rightcolumn">
+	<h3>Committers</h3>
+		<ul>
+			<li>Jacques Bouthillier</li>
+			<li>GuyPerron</li>
+			<li>Pascal Rapicault</li>
+			<li>Francois Chouinard</li>
+		</ul>		
+</div>
diff --git a/index.php b/index.php
new file mode 100755
index 0000000..d1b0491
--- /dev/null
+++ b/index.php
@@ -0,0 +1,20 @@
+<?php  																														require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); 	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); 	$App 	= new App();	$Nav	= new Nav();	$Menu 	= new Menu();		include($App->getProjectCommon());    # All on the same line to unclutter the user's desktop'
+/*******************************************************************************
+ * Copyright (c) 2010, 2015 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:
+ *    
+ *******************************************************************************/
+
+$pageTitle 		= "EGerrit";
+
+	# Paste your HTML content between the EOHTML markers!
+	$html = file_get_contents('_index.html');
+	
+	# Generate the web page
+	$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>