Provided link to future release added header image

Change-Id: I74ed56c84a92c52c152d49532fc97bebf0348af4
Signed-off-by: Sergei Kovalchuk <sergei.kovalchuk@arsysop.ru>
diff --git a/images/title.png b/images/title.png
new file mode 100644
index 0000000..69ad7da
--- /dev/null
+++ b/images/title.png
Binary files differ
diff --git a/index.php b/index.php
index 3274479..761a988 100644
--- a/index.php
+++ b/index.php
@@ -1,78 +1,72 @@
-<?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());
-
-	$localVersion = false;
-
-	$titlePage = "Eclipse Technology Passage";
-
-	// 	# Paste your HTML content between the EOHTML markers!
-	$html = <<<EOHTML
-	<div id="bigbuttons">
-		<h3>Primary Links</h3>
-			<ul>
-			<li><a id="buttonDownload" href="downloads.php" title="Download">
-					Eclipse Passage Distribution</a></li>
-			<li><a id="buttonDocumentation" href="documentation.php" title="Documentation">
-					Tutorials, Reference Documentation</a></li>
-			<li><a id="buttonSupport" href="support.php" title="Support">
-					Bug Tracker, Newsgroup</a></li>
-			<li><a id="buttonInvolved" href="developers.php" title="Getting Involved">
-					Git, Workspace Setup, Wiki, Committers</a></li>
-			</ul>
-	</div>
-	<div id="midcolumn">
-	<h3>Eclipse Passage (License Management Solution)</h3>
-	<div id="introText">
-
-<p>
-	The Eclipse Passage project aims to provide rich and easily adaptable capabilities to define and control licensing constraints.
-	<p/>
-	The Eclipse Passage represents several sets of components for license management:
-	<p/>
-	<li>Licensing Runtime Interfaces</li>
-	<li>Licensing Operator Client</li>
-	<li>Licensing Back-end Server</li>
-	<p/>
-	<p/>
-
-	Eclipse Passage is primary focused to support OSGi-based products:
-	<li>Capability-based licensing constraints definitions</li>
-	<li>Component-based licensing constraints definitions</li>
-	<li>More to come</li>
-
-	Easy to use, simple to integrate, cheap to maintain.
-
-</p>
-<img
-    class="displayed"
-    src="/passage/images/snapshot.png"
-    height="550"
-    alt="Eclipse Passage Snapshots"
-    border="0"/>
-
-</div>
-</div>
-
-<div id="rightcolumn">
-
-<div>
-<h3>Current Status</h3>
-<p></p>
-</div>
-<div id="headlines">
-<h3>Eclipse Passage is under development: version 0.4.0 will be released soon</h3>
-</div>
-</div>
-EOHTML;
-	# Generate the web page
-	$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/passage/style.css"/>');
-	$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $titlePage, $html);
-
-?>
+<?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());

+

+	$localVersion = false;

+

+	$titlePage = "Eclipse Technology Passage";

+

+	// 	# Paste your HTML content between the EOHTML markers!

+	$html = <<<EOHTML

+	<div>

+		<img

+    		class="displayed"

+   	 		src="/passage/images/title.png"

+    		height="200"

+    		alt="Eclipse Passage Title"

+    		border="0"/>		

+	</div>

+	<div id="midcolumn">

+	<h3>Eclipse Passage (License Management Solution)</h3>

+	<div id="introText">

+

+<p>

+	The Eclipse Passage project aims to provide rich and easily adaptable capabilities to define and control licensing constraints.

+	<p/>

+	The Eclipse Passage represents several sets of components for license management:

+	<p/>

+	<li>Licensing Runtime Interfaces</li>

+	<li>Licensing Operator Client</li>

+	<li>Licensing Back-end Server</li>

+	<p/>

+	<p/>

+

+	Eclipse Passage is primary focused to support OSGi-based products:

+	<li>Capability-based licensing constraints definitions</li>

+	<li>Component-based licensing constraints definitions</li>

+	<li>More to come</li>

+

+	Easy to use, simple to integrate, cheap to maintain.

+

+</p>

+<img

+    class="displayed"

+    src="/passage/images/snapshot.png"

+    height="550"

+    alt="Eclipse Passage Snapshots"

+    border="0"/>

+

+</div>

+</div>

+

+<div id="rightcolumn">

+<div id="headlines">

+	<h3>Eclipse Passage 0.4.0</h3>

+	<p>

+		<i>This is the first release of Eclipse Passage at Eclipse Foundation.</i>

+		<a href="https://projects.eclipse.org/projects/technology.passage/releases/0.4.0">Details</a>

+	</p>

+</div>

+</div>

+EOHTML;

+	# Generate the web page

+	$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/passage/style.css"/>');

+	$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $titlePage, $html);

+

+?>