Clean up ganymede for default theme

Change-Id: I67d1eb4718cb89d67fa61536cac93c6fb86fc9f7
Signed-off-by: Eric Poirier <eric.poirier@eclipse-foundation.org>
diff --git a/_projectCommon.php b/_projectCommon.php
index 052495b..8f124c9 100644
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -1,24 +1,29 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 
+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
 
-	# Set the theme for your project's web pages.
-	# See the Committer Tools "How Do I" for list of themes
-	# https://dev.eclipse.org/committers/
-	# Optional: defaults to system theme
 $theme = NULL;
 $App->Promotion = FALSE;
 
-$App->setOutDated( '2011-11-11', '<a href="https://projects.eclipse.org/releases/ganymede">Ganymede</a> is a past version of Eclipse. Please visit our <a href="/downloads/">download</a> page for the latest version of Eclipse. ' );
+$App->setOutDated('2011-11-11', '<a href="https://projects.eclipse.org/releases/ganymede">Ganymede</a> is a past version of Eclipse. Please visit our <a href="/downloads/">download</a> page for the latest version of Eclipse. ');
 
-?>
\ No newline at end of file
+$Nav = new Nav();
+$Nav->addNavSeparator("Ganymede", "");
+$Nav->addCustomNav("Download Ganymede", "/downloads/packages/", "_self", 1);
+$Nav->addCustomNav("Learn more about Ganymede", "/ganymede/learn.php", "_self", 1);
+$Nav->addCustomNav("Ganymede Buzz", "/ganymede/buzz.php", "_self", 1);
+$Nav->addCustomNav("Ganymede Around the World", "/ganymede/mapList.php", "_self", 1);
+$Theme->setNav($Nav);
diff --git a/aroundtheworld.php b/aroundtheworld.php
index 6cd162b..5aedb4d 100644
--- a/aroundtheworld.php
+++ b/aroundtheworld.php
@@ -1,36 +1,34 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
 
+include ($App->getProjectCommon());
 
 // Begin: page-specific settings. Change these.
-$pageTitle 		= "Ganymede Around the World Contest";
-$pageKeywords	= "ganymede, world, contest, blog, podcast, video";
-$pageAuthor		= "Lynn Gayowski";
+$pageTitle = "Ganymede Around the World Contest";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("ganymede, world, contest, blog, podcast, video");
+$Theme->setPageAuthor("Lynn Gayowski");
 
-// Place your html content in a file called content/en_pagename.php
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/buzz.php b/buzz.php
index 8500a4f..9b1b0ca 100644
--- a/buzz.php
+++ b/buzz.php
@@ -1,38 +1,37 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
 
+include ($App->getProjectCommon());
 
 // Begin: page-specific settings. Change these.
-$pageTitle 		= "Ganymede  Buzz";
-$pageKeywords	= "ganymede, release, ganymede release train, buzz, press";
-$pageAuthor		= "Nathan Gervais";
+$pageTitle = "Ganymede  Buzz";
 $App->PageRSS = "/home/eclipseinthenews.rss";
 $App->PageRSSTitle = "Eclipse In The News";
 
-// Place your html content in a file called content/en_pagename.php
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("ganymede, release, ganymede release train, buzz, press");
+$Theme->setPageAuthor("Nathan Gervais");
+
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/buzzmore.php b/buzzmore.php
index 8500a4f..6f101e8 100644
--- a/buzzmore.php
+++ b/buzzmore.php
@@ -1,38 +1,36 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
 
+include ($App->getProjectCommon());
 
-// Begin: page-specific settings. Change these.
-$pageTitle 		= "Ganymede  Buzz";
-$pageKeywords	= "ganymede, release, ganymede release train, buzz, press";
-$pageAuthor		= "Nathan Gervais";
+$pageTitle = "Ganymede  Buzz";
 $App->PageRSS = "/home/eclipseinthenews.rss";
 $App->PageRSSTitle = "Eclipse In The News";
 
-// Place your html content in a file called content/en_pagename.php
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("ganymede, release, ganymede release train, buzz, press");
+$Theme->setPageAuthor("Nathan Gervais");
+
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/content/en_aroundtheworld.php b/content/en_aroundtheworld.php
index 55d70c4..4f43dfa 100644
--- a/content/en_aroundtheworld.php
+++ b/content/en_aroundtheworld.php
@@ -1,111 +1,86 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
-
 <div id="ganymedeHeader">
   <div id="headerGraphic">
     <map name="ganymedeHeaderIMap">
       <area shape="rect" coords="71,61,440, 124" href="/ganymede/">
       <area shape="rect" coords="450,60,745,125"
-        href="/downloads/packages/release/ganymede/sr2">
+        href="/downloads/packages/release/ganymede/sr2"
+      >
     </map>
     <img src="/ganymede/images/ganymedeHeaderThin.jpg"
-      usemap="#ganymedeHeaderIMap">
+      usemap="#ganymedeHeaderIMap"
+    >
   </div>
 </div>
-<!-- nav -->
-<aside id="leftcol" class="col-md-4">
-  <ul id="leftnav" class="ul-left-nav fa-ul hidden-print">
-    <li class="separator"><a class="separator" href="/ganymede/">
-        Ganymede </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/downloads/packages/" target="_self"> Download Ganymede </a>
-    </li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/learn.php" target="_self"> Learn more about
-        Ganymede </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/buzz.php" target="_self"> Ganymede Buzz </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/mapList.php" target="_self"> Ganymede Around the World
-    </a></li>
-  </ul>
-</aside>
 <div id="maincontent">
   <div id="midcolumn">
     <h1>Ganymede Around the World Contest</h1>
-
     <p>
-      We want to hear how you&#146;re using the Eclipse projects in the
-      <a href="http://www.eclipse.org/ganymede/">Ganymede</a> release.
-      Write a blog post, create a screencast/video, or record a podcast
-      telling the world what&#146;s great or what you dislike about
-      Ganymede. For your efforts, we&#146;ll send you an Eclipse shirt.
+      We want to hear how you&#146;re using the Eclipse projects in the <a
+        href="/ganymede/"
+      >Ganymede</a> release. Write a blog post, create a screencast/video, or
+      record a podcast telling the world what&#146;s great or what you dislike
+      about Ganymede. For your efforts, we&#146;ll send you an Eclipse shirt.
     </p>
-
     <p>
       Once you have posted your review, add it to the <a href="mapList.php">Ganymede
-        Around the World map</a>. Eclipse is a global community, so we
-      encourage you to create a review in your native language.
+        Around the World map</a>. Eclipse is a global community, so we encourage
+      you to create a review in your native language.
     </p>
-
     <p>
-      If you want to show your support but don&#146;t have the time to
-      prepare a review, you can still add yourself to the <a
-        href="mapList.php">Ganymede Around the World map</a>. Just enter
-      your name, address and a short message or image about how you use
-      Eclipse. Everyone who adds their name will be entered into a
-      random draw for 5 Eclipse jackets.
+      If you want to show your support but don&#146;t have the time to prepare a
+      review, you can still add yourself to the <a href="mapList.php">Ganymede
+        Around the World map</a>. Just enter your name, address and a short
+      message or image about how you use Eclipse. Everyone who adds their name
+      will be entered into a random draw for 5 Eclipse jackets.
     </p>
-
     <p>
-      To enter the contest, a review must be of sufficient technical
-      content. Long essays aren&#146;t necessary, but as a guideline,
-      include 3 to 5 points of what you like or don&#146;t like about
-      the Ganymede projects. The top 3 reviews will win an Eclipse
-      jacket and the best entry will win their choice of a pass to <a
-        href="http://www.eclipsecon.org/2009/">EclipseCon 2009</a> or <a
-        href="http://eclipsesummit.org/summiteurope2008/">Eclipse Summit
-        Europe 2008</a>!
+      To enter the contest, a review must be of sufficient technical content.
+      Long essays aren&#146;t necessary, but as a guideline, include 3 to 5
+      points of what you like or don&#146;t like about the Ganymede projects.
+      The top 3 reviews will win an Eclipse jacket and the best entry will win
+      their choice of a pass to <a href="http://www.eclipsecon.org/2009/">EclipseCon
+        2009</a> or <a href="http://eclipsesummit.org/summiteurope2008/">Eclipse
+        Summit Europe 2008</a>!
     </p>
-
     <p>
-      The deadline for submissions to the contest is <b>July 31, 2008</b>.
-      The top 3 and best reviews will be selected by a panel of judges.
+      The deadline for submissions to the contest is <b>July 31, 2008</b>. The
+      top 3 and best reviews will be selected by a panel of judges.
     </p>
-
     <p>
       <b>Important Details:</b>
     </p>
-
-
     <ul>
-      <li>You can submit multiple reviews but only one shirt per person
-        will be sent.</li>
+      <li>You can submit multiple reviews but only one shirt per person will be
+        sent.</li>
       <li>Shirt quantities are limited so shirts will be distributed to
         reviewers on a first come, first served basis.</li>
       <li>The EclipseCon or Eclipse Summit Europe pass only covers the
-        conference registration. It does not include any travel
-        expenses. The pass is non-transferable, non-refundable and has
-        no cash value. If you can&#146;t go to either conference or you
-        receive a free pass some other way (such as a speaker pass), you
-        won&#146;t be able to take advantage of the prize.</li>
-      <li>Informed, insightful, educated reviews &#150; positive and
-        negative &#150; are always welcome. However, FUD-spewers,
-        propagandists and mean-spirited curmudgeons need not apply.</li>
+        conference registration. It does not include any travel expenses. The
+        pass is non-transferable, non-refundable and has no cash value. If you
+        can&#146;t go to either conference or you receive a free pass some other
+        way (such as a speaker pass), you won&#146;t be able to take advantage
+        of the prize.</li>
+      <li>Informed, insightful, educated reviews &#150; positive and negative
+        &#150; are always welcome. However, FUD-spewers, propagandists and
+        mean-spirited curmudgeons need not apply.</li>
       <li>A review needs to be submitted to the <a href="mapList.php">Ganymede
-          Around the World </a>map with an email address to participate
-        in the contest.
+          Around the World </a>map with an email address to participate in the
+        contest.
       </li>
     </ul>
   </div>
@@ -115,7 +90,7 @@
   <div class="sideitem">
     <h6>Ganymede Around the World</h6>
     <ul>
-      <li><a href="http://www.eclipse.org/ganymede/">Ganymede</a></li>
+      <li><a href="/ganymede/">Ganymede</a></li>
       <li><a href="mapList.php">Ganymede Map</a></li>
     </ul>
   </div>
diff --git a/content/en_buzz.php b/content/en_buzz.php
index 2a792ed..ab351ff 100644
--- a/content/en_buzz.php
+++ b/content/en_buzz.php
@@ -1,157 +1,124 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
-<aside id="leftcol" class="col-md-4">
-  <ul id="leftnav" class="ul-left-nav fa-ul hidden-print">
-    <li class="separator"><a class="separator" href="/ganymede/">
-        Ganymede </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/downloads/packages/" target="_self"> Download Ganymede </a>
-    </li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/learn.php" target="_self"> Learn more about
-        Ganymede </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/buzz.php" target="_self"> Ganymede Buzz </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/mapList.php" target="_self"> Ganymede Around the World
-    </a></li>
-
-  </ul>
-</aside>
 <div id="maincontent">
   <div id="midcolumn">
-    <img
-      src="http://dev.eclipse.org/large_icons/devices/network-wireless.png">
+    <img src="http://dev.eclipse.org/large_icons/devices/network-wireless.png">
     <h1 class="inline">Ganymede Buzz</h1>
-
     <div class="homeitem3col">
       <h3>Community Buzz</h3>
       <ul>
-
-        <li><a href="http://www.myeclipseide.com/Article79.html"
-          target="_blank">MyEclipse Delivers Advanced Ajax Tools for
-            Ganymede </a> <span class="posted">+371&nbsp;weeks&nbsp;ago</span>
-          <p>Genuitec is pleased to announce today the immediate
-            availability of MyEclipse Enterprise Workbench 7.0 milestone
-            1. This milestone release delivers advanced Ajax tooling for
-            Java EE and full Application Lifecycle Management (ALM)
-            capabilities for Eclipse 3.4 Ganymede, among other
-            enhancements.</p></li>
-
+        <li><a href="http://www.myeclipseide.com/Article79.html" target="_blank">MyEclipse
+            Delivers Advanced Ajax Tools for Ganymede </a> <span class="posted">+371&nbsp;weeks&nbsp;ago</span>
+          <p>Genuitec is pleased to announce today the immediate availability of
+            MyEclipse Enterprise Workbench 7.0 milestone 1. This milestone
+            release delivers advanced Ajax tooling for Java EE and full
+            Application Lifecycle Management (ALM) capabilities for Eclipse 3.4
+            Ganymede, among other enhancements.</p></li>
         <li><a
           href="http://www.protecode.com/site/pdf/GA%20Availability%20Press%20Rel.pdf"
-          target="_blank">Protecode Annouces General Availability of
-            Governance and Intellectual Property Management Software </a>
-          <span class="posted">+376&nbsp;weeks&nbsp;ago</span>
-          <p>Protecode Inc., today announced the general availability of
-            its software development tool for governance and
-            Intellectual Property (IP) management. The latest release
-            enables commercial software developers and open source
-            creators to accelerate managed adoption of open source code
-            in a simple, painless process. Additionally, the software is
-            now available to the Eclipse community for anyone working on
-            an active Eclipse project.</p></li>
-
+          target="_blank"
+        >Protecode Annouces General Availability of Governance and Intellectual
+            Property Management Software </a> <span class="posted">+376&nbsp;weeks&nbsp;ago</span>
+          <p>Protecode Inc., today announced the general availability of its
+            software development tool for governance and Intellectual Property
+            (IP) management. The latest release enables commercial software
+            developers and open source creators to accelerate managed adoption
+            of open source code in a simple, painless process. Additionally, the
+            software is now available to the Eclipse community for anyone
+            working on an active Eclipse project.</p></li>
         <li><a href="http://www.ddj.com/linux-open-source/208802482"
-          target="_blank">The Eclipse Ganymede Release </a> <span
-          class="posted">+376&nbsp;weeks&nbsp;ago</span>
-          <p>Dr. Dobb's talks to Mike Milinkovich, Executive Director of
-            the Eclipse Foundation, about the Eclipse Ganymede release,
-            a coordinated release of 23 different Eclipse project teams
-            and represents over 18 million lines of code.</p></li>
-
-        <li><a
-          href="http://www.froglogic.com/pg?id=NewsEvents&category=98"
-          target="_blank">Java GUI Testing Tool Squish Supports New
-            Eclipse "Ganymede" 3.4 </a> <span class="posted">+377&nbsp;weeks&nbsp;ago</span>
+          target="_blank"
+        >The Eclipse Ganymede Release </a> <span class="posted">+376&nbsp;weeks&nbsp;ago</span>
+          <p>Dr. Dobb's talks to Mike Milinkovich, Executive Director of the
+            Eclipse Foundation, about the Eclipse Ganymede release, a
+            coordinated release of 23 different Eclipse project teams and
+            represents over 18 million lines of code.</p></li>
+        <li><a href="http://www.froglogic.com/pg?id=NewsEvents&category=98"
+          target="_blank"
+        >Java GUI Testing Tool Squish Supports New Eclipse "Ganymede" 3.4 </a> <span
+          class="posted"
+        >+377&nbsp;weeks&nbsp;ago</span>
           <p>
-            froglogic GmbH today announced support for automated testing
-            of Java Rich Client Platform (RCP) applications based on the
-            new Eclipse 3.4 release code named Ganymede.<br /> Squish
-            for Java is a leading functional GUI and regression testing
-            tool enabling the creation and execution of automated GUI
-            tests for Java SWT/RCP and AWT/Swing applications.
+            froglogic GmbH today announced support for automated testing of Java
+            Rich Client Platform (RCP) applications based on the new Eclipse 3.4
+            release code named Ganymede.<br /> Squish for Java is a leading
+            functional GUI and regression testing tool enabling the creation and
+            execution of automated GUI tests for Java SWT/RCP and AWT/Swing
+            applications.
           </p></li>
-
         <li><a href="http://www.ecommercetimes.com/story/63659.html"
-          target="_blank">Eclipse Release Is Great but Doesn't Reach the
-            Cloud </a> <span class="posted">+377&nbsp;weeks&nbsp;ago</span>
-          <p>The Eclipse Foundation has delivered a healthy package of
-            updates, right on time, for the third year in a row. That's
-            commendable, writes contributor Dana Gardner. What he'd
-            really like to see, however, is a greater commitment on
-            Eclipse's part to integrate with cloud-based development.</p>
-        </li>
-
+          target="_blank"
+        >Eclipse Release Is Great but Doesn't Reach the Cloud </a> <span
+          class="posted"
+        >+377&nbsp;weeks&nbsp;ago</span>
+          <p>The Eclipse Foundation has delivered a healthy package of updates,
+            right on time, for the third year in a row. That's commendable,
+            writes contributor Dana Gardner. What he'd really like to see,
+            however, is a greater commitment on Eclipse's part to integrate with
+            cloud-based development.</p></li>
         <li><a
           href="http://eclipse.dzone.com/articles/eclipse-ganymede-18-million-li"
-          target="_blank">Eclipse Ganymede - 18 Million Lines of Code
-            Delivered on Schedule </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
-          <p>As many of you may know the annual Eclipse release train,
-            called Ganymede, is now available. This is the third year in
-            a row that the Eclipse community has shipped a coordinate
-            release of multiple projects; 23 projects are included this
-            year. An important reason for the release trains is to make
-            it easier for Eclipse users and adopters, who tend to use
-            multiple projects, to upgrade to a new release. A
-            coordinated release schedule makes its possible for timely
-            upgrades in the Eclipse community.</p></li>
-
-        <li><a href="http://blogs.zdnet.com/Gardner/?p=2698"
-          target="_blank">Eclipse Foundation delivers Ganymede train
-            with 23 cars, but where are the cloud on-ramps? </a> <span
-          class="posted">+378&nbsp;weeks&nbsp;ago</span>
-          <p>For the third year in a row, the Eclipse community has
-            delivered, on the same day as in previous years, numerous
-            software updates across a wide range of projects.</p></li>
-
-        <li><a href="http://www.ddj.com/linux-open-source/208800860"
-          target="_blank">Eclipse Delivers Annual Release </a> <span
-          class="posted">+378&nbsp;weeks&nbsp;ago</span>
-          <p>"Once again the Eclipse community has delivered our annual
-            release train and continues to deliver innovative software
-            in a predictable manner," said Mike Milinkovich, Executive
-            Director of the Eclipse Foundation. "New features like the
-            Equinox p2 provisioning system, new modeling tools and tools
-            that support SOA developers will be popular features for
-            Eclipse users."</p></li>
-
-        <li><a href="http://www.devxnews.com/article.php/3755391"
-          target="_blank">Eclipse Ganymede Makes It Easier for Devs </a>
+          target="_blank"
+        >Eclipse Ganymede - 18 Million Lines of Code Delivered on Schedule </a>
           <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
-          <p>Some open source efforts are satisfied with releasing one
-            or two projects a year. That's not the case with the open
-            source Eclipse Foundation, which today released 23 projects
-            as part of its Ganymede release train.</p></li>
-
-        <li><a
-          href="http://www.instantiations.com/press/release/080625.html"
-          target="_blank">Instantiations Rolls Out Product Updates in
-            Conjunction with Eclipse 3.4 and Ganymede </a> <span
-          class="posted">+378&nbsp;weeks&nbsp;ago</span>
-          <p>Instantiations, Inc., a leading provider of software
-            quality and productivity solutions for the Eclipse platform,
-            today announced that its entire Eclipse-based product line
-            has been updated to coincide with the annual Eclipse open
-            source release, Ganymede. Included with the roll-out are
-            significant additions in the area of security to its CodePro
+          <p>As many of you may know the annual Eclipse release train, called
+            Ganymede, is now available. This is the third year in a row that the
+            Eclipse community has shipped a coordinate release of multiple
+            projects; 23 projects are included this year. An important reason
+            for the release trains is to make it easier for Eclipse users and
+            adopters, who tend to use multiple projects, to upgrade to a new
+            release. A coordinated release schedule makes its possible for
+            timely upgrades in the Eclipse community.</p></li>
+        <li><a href="http://blogs.zdnet.com/Gardner/?p=2698" target="_blank">Eclipse
+            Foundation delivers Ganymede train with 23 cars, but where are the
+            cloud on-ramps? </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+          <p>For the third year in a row, the Eclipse community has delivered,
+            on the same day as in previous years, numerous software updates
+            across a wide range of projects.</p></li>
+        <li><a href="http://www.ddj.com/linux-open-source/208800860"
+          target="_blank"
+        >Eclipse Delivers Annual Release </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+          <p>"Once again the Eclipse community has delivered our annual release
+            train and continues to deliver innovative software in a predictable
+            manner," said Mike Milinkovich, Executive Director of the Eclipse
+            Foundation. "New features like the Equinox p2 provisioning system,
+            new modeling tools and tools that support SOA developers will be
+            popular features for Eclipse users."</p></li>
+        <li><a href="http://www.devxnews.com/article.php/3755391"
+          target="_blank"
+        >Eclipse Ganymede Makes It Easier for Devs </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+          <p>Some open source efforts are satisfied with releasing one or two
+            projects a year. That's not the case with the open source Eclipse
+            Foundation, which today released 23 projects as part of its Ganymede
+            release train.</p></li>
+        <li><a href="http://www.instantiations.com/press/release/080625.html"
+          target="_blank"
+        >Instantiations Rolls Out Product Updates in Conjunction with Eclipse
+            3.4 and Ganymede </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+          <p>Instantiations, Inc., a leading provider of software quality and
+            productivity solutions for the Eclipse platform, today announced
+            that its entire Eclipse-based product line has been updated to
+            coincide with the annual Eclipse open source release, Ganymede.
+            Included with the roll-out are significant additions in the area of
+            security to its CodePro
             AnalytiX&Atilde;&fnof;&Acirc;&cent;&Atilde;&cent;&acirc;&sbquo;&not;&Aring;&frac34;&Atilde;&sbquo;&Acirc;&cent;
             comprehensive code quality product, bringing advanced
-            standards-based security auditing to developers desktops as
-            they write code. The Ganymede release train includes Eclipse
-            3.4, the annual release of the Eclipse platform, which was
-            delivered today.</p></li>
+            standards-based security auditing to developers desktops as they
+            write code. The Ganymede release train includes Eclipse 3.4, the
+            annual release of the Eclipse platform, which was delivered today.</p></li>
         <li class="more">
           <div class="more">
             <a href="buzzmore.php">Read More</a>
@@ -159,28 +126,25 @@
         </li>
       </ul>
     </div>
-
     <div class="homeitem3col">
       <h3>Ganymede Around the World Blogs</h3>
       <ul>
-        <li><a href="http://siagian.p.blog.com" target="_blank">siagian.p</a>
-          - verdy</li>
-        <li><a href="http://hi.baidu.com/mimimo" target="_blank">mamimoluo</a>
-          - mamimoluo</li>
-        <li><a href="http://" target="_blank">http://</a> - mansouri med
-          ali</li>
+        <li><a href="http://siagian.p.blog.com" target="_blank">siagian.p</a> -
+          verdy</li>
+        <li><a href="http://hi.baidu.com/mimimo" target="_blank">mamimoluo</a> -
+          mamimoluo</li>
+        <li><a href="http://" target="_blank">http://</a> - mansouri med ali</li>
         <li><a href="http://" target="_blank">http://</a> - WANGBL</li>
         <li><a href="http://" target="_blank">http://</a> - WANGBL</li>
-        <li><a href="http://" target="_blank">http://</a> - Mario A.
-          Gimenez</li>
+        <li><a href="http://" target="_blank">http://</a> - Mario A. Gimenez</li>
         <li><a href="http://anandharidas.blogspot.com/" target="_blank">http://anandharidas.blogspot.com/</a>
           - Anand Haridas</li>
         <li><a href="http://codenaut.blogspot.com" target="_blank">http://codenaut.blogspot.com</a>
           - FRJK</li>
         <li><a href="http://codenaut.blogger.com" target="_blank">http://codenaut.blogger.com</a>
           - FRJK</li>
-        <li><a href="http://sites.google.com/struts2spring"
-          target="_blank">struts2spring</a> - Vijay Kumar Keshri</li>
+        <li><a href="http://sites.google.com/struts2spring" target="_blank">struts2spring</a>
+          - Vijay Kumar Keshri</li>
         <li class="more">
           <div class="more">
             <a href="mapList.php">Read More</a>
@@ -199,4 +163,4 @@
       </ul>
     </div>
   </div>
-  </div>
\ No newline at end of file
+</div>
\ No newline at end of file
diff --git a/content/en_buzzmore.php b/content/en_buzzmore.php
index 939e815..571ffd9 100644
--- a/content/en_buzzmore.php
+++ b/content/en_buzzmore.php
@@ -1,385 +1,301 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 <div id="ganymedeHeader">
   <div id="headerGraphic">
     <map name="ganymedeHeaderIMap">
       <area shape="rect" coords="71,61,440, 124" href="/ganymede/">
       <area shape="rect" coords="450,60,745,125"
-        href="/downloads/packages/release/ganymede/sr2">
+        href="/downloads/packages/release/ganymede/sr2"
+      >
     </map>
     <img src="/ganymede/images/ganymedeHeaderThin.jpg"
-      usemap="#ganymedeHeaderIMap">
+      usemap="#ganymedeHeaderIMap"
+    >
   </div>
 </div>
-</div>
-</div>
-<main role="main" class=" no-promo">
-<div class="container background-image-none" id="novaContent">
-  <!-- nav -->
-  <aside id="leftcol" class="col-md-4">
-    <ul id="leftnav" class="ul-left-nav fa-ul hidden-print">
-
-
-      <li class="separator"><a class="separator" href="/ganymede/">
-          Ganymede </a></li>
-
-
-
-      <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-        href="/downloads/packages/" target="_self"> Download Ganymede </a>
-      </li>
-
-
-
-      <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-        href="/ganymede/learn.php" target="_self"> Learn more about
-          Ganymede </a></li>
-
-
-
-      <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-        href="/ganymede/buzz.php" target="_self"> Ganymede Buzz </a></li>
-
-
-
-      <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-        href="/ganymede/mapList.php" target="_self"> Ganymede Around the
-          World </a></li>
-
+<div id="midcolumn">
+  <img src="http://dev.eclipse.org/large_icons/devices/network-wireless.png">
+  <h1 class="inline">Ganymede Buzz</h1>
+  <div class="homeitem3col">
+    <h3>Community Buzz</h3>
+    <ul>
+      <li><a href="http://www.myeclipseide.com/Article79.html" target="_blank">MyEclipse
+          Delivers Advanced Ajax Tools for Ganymede </a> <span class="posted">+371&nbsp;weeks&nbsp;ago</span>
+        <p>Genuitec is pleased to announce today the immediate availability of
+          MyEclipse Enterprise Workbench 7.0 milestone 1. This milestone release
+          delivers advanced Ajax tooling for Java EE and full Application
+          Lifecycle Management (ALM) capabilities for Eclipse 3.4 Ganymede,
+          among other enhancements.</p></li>
+      <li><a
+        href="http://www.protecode.com/site/pdf/GA%20Availability%20Press%20Rel.pdf"
+        target="_blank"
+      >Protecode Annouces General Availability of Governance and Intellectual
+          Property Management Software </a> <span class="posted">+376&nbsp;weeks&nbsp;ago</span>
+        <p>Protecode Inc., today announced the general availability of its
+          software development tool for governance and Intellectual Property
+          (IP) management. The latest release enables commercial software
+          developers and open source creators to accelerate managed adoption of
+          open source code in a simple, painless process. Additionally, the
+          software is now available to the Eclipse community for anyone working
+          on an active Eclipse project.</p></li>
+      <li><a href="http://www.ddj.com/linux-open-source/208802482"
+        target="_blank"
+      >The Eclipse Ganymede Release </a> <span class="posted">+376&nbsp;weeks&nbsp;ago</span>
+        <p>Dr. Dobb's talks to Mike Milinkovich, Executive Director of the
+          Eclipse Foundation, about the Eclipse Ganymede release, a coordinated
+          release of 23 different Eclipse project teams and represents over 18
+          million lines of code.</p></li>
+      <li><a href="http://www.froglogic.com/pg?id=NewsEvents&category=98"
+        target="_blank"
+      >Java GUI Testing Tool Squish Supports New Eclipse "Ganymede" 3.4 </a> <span
+        class="posted"
+      >+377&nbsp;weeks&nbsp;ago</span>
+        <p>
+          froglogic GmbH today announced support for automated testing of Java
+          Rich Client Platform (RCP) applications based on the new Eclipse 3.4
+          release code named Ganymede.<br /> Squish for Java is a leading
+          functional GUI and regression testing tool enabling the creation and
+          execution of automated GUI tests for Java SWT/RCP and AWT/Swing
+          applications.
+        </p></li>
+      <li><a href="http://www.ecommercetimes.com/story/63659.html"
+        target="_blank"
+      >Eclipse Release Is Great but Doesn't Reach the Cloud </a> <span
+        class="posted"
+      >+377&nbsp;weeks&nbsp;ago</span>
+        <p>The Eclipse Foundation has delivered a healthy package of updates,
+          right on time, for the third year in a row. That's commendable, writes
+          contributor Dana Gardner. What he'd really like to see, however, is a
+          greater commitment on Eclipse's part to integrate with cloud-based
+          development.</p></li>
+      <li><a
+        href="http://eclipse.dzone.com/articles/eclipse-ganymede-18-million-li"
+        target="_blank"
+      >Eclipse Ganymede - 18 Million Lines of Code Delivered on Schedule </a> <span
+        class="posted"
+      >+378&nbsp;weeks&nbsp;ago</span>
+        <p>As many of you may know the annual Eclipse release train, called
+          Ganymede, is now available. This is the third year in a row that the
+          Eclipse community has shipped a coordinate release of multiple
+          projects; 23 projects are included this year. An important reason for
+          the release trains is to make it easier for Eclipse users and
+          adopters, who tend to use multiple projects, to upgrade to a new
+          release. A coordinated release schedule makes its possible for timely
+          upgrades in the Eclipse community.</p></li>
+      <li><a href="http://blogs.zdnet.com/Gardner/?p=2698" target="_blank">Eclipse
+          Foundation delivers Ganymede train with 23 cars, but where are the
+          cloud on-ramps? </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+        <p>For the third year in a row, the Eclipse community has delivered, on
+          the same day as in previous years, numerous software updates across a
+          wide range of projects.</p></li>
+      <li><a href="http://www.ddj.com/linux-open-source/208800860"
+        target="_blank"
+      >Eclipse Delivers Annual Release </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+        <p>"Once again the Eclipse community has delivered our annual release
+          train and continues to deliver innovative software in a predictable
+          manner," said Mike Milinkovich, Executive Director of the Eclipse
+          Foundation. "New features like the Equinox p2 provisioning system, new
+          modeling tools and tools that support SOA developers will be popular
+          features for Eclipse users."</p></li>
+      <li><a href="http://www.devxnews.com/article.php/3755391" target="_blank">Eclipse
+          Ganymede Makes It Easier for Devs </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+        <p>Some open source efforts are satisfied with releasing one or two
+          projects a year. That's not the case with the open source Eclipse
+          Foundation, which today released 23 projects as part of its Ganymede
+          release train.</p></li>
+      <li><a href="http://www.instantiations.com/press/release/080625.html"
+        target="_blank"
+      >Instantiations Rolls Out Product Updates in Conjunction with Eclipse 3.4
+          and Ganymede </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+        <p>Instantiations, Inc., a leading provider of software quality and
+          productivity solutions for the Eclipse platform, today announced that
+          its entire Eclipse-based product line has been updated to coincide
+          with the annual Eclipse open source release, Ganymede. Included with
+          the roll-out are significant additions in the area of security to its
+          CodePro
+          AnalytiX&Atilde;&fnof;&Acirc;&cent;&Atilde;&cent;&acirc;&sbquo;&not;&Aring;&frac34;&Atilde;&sbquo;&Acirc;&cent;
+          comprehensive code quality product, bringing advanced standards-based
+          security auditing to developers desktops as they write code. The
+          Ganymede release train includes Eclipse 3.4, the annual release of the
+          Eclipse platform, which was delivered today.</p></li>
+      <li><a href="http://www.emediawire.com/releases/2008/6/prweb1055254.htm"
+        target="_blank"
+      >Migrate Easily to Eclipse 3.4 Ganymede, Manage Configurations with Pulse
+      </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+        <p>
+          Genuitec, LLC, a founding member of the Eclipse Foundation, announced
+          today the general availability of Pulse 2.2, the free and easiest way
+          to obtain, manage and configure Eclipse Ganymede and plugins. <br />Genuitec
+          is pleased to offer this product to Pulse users on the day of the
+          Ganymede release. As of today, Pulse 2.2 will support full Ganymede
+          tool stacks.
+        </p></li>
+      <li><a href="http://tasktop.com/blog/?p=32" target="_blank">Mylyn 3.0
+          released </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+        <p>The Mylyn team is very pleased to announce
+          today&Atilde;&fnof;&Acirc;&cent;&Atilde;&cent;&acirc;&euro;&scaron;&Acirc;&not;&Atilde;&cent;&acirc;&euro;&#382;&Acirc;&cent;s
+          release of Mylyn 3.0 along with the Eclipse Ganymede release train.
+          This occasion marks a big step in the evolution of the task-focused
+          interface</p></li>
+      <li><a href="http://www.adtmag.com/article.aspx?id=22837" target="_blank">Eclipse's
+          Third 'Release Train' on Schedule </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
+        <p>On Wednesday June 25 the Eclipse Foundation is sending its third
+          annual "release train" chugging down the track. This year's
+          synchronized launch of several Eclipse projects at once (code named
+          "Ganymede") involved the coordinated release of 23 projects, up from
+          21 in last year's "Europa" release, and 10 in 2006 with the original
+          "Callisto" release. One of the goals of the release-train strategy,
+          said Eclipse Foundation executive director Mike Milinkovich, is to
+          provide "a level of predictability" that will promote commercial
+          adoption of the Eclipse community's products.</p></li>
+      <li><a
+        href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9102838"
+        target="_blank"
+      >Eclipse set for coordinated release of 23 updates </a> <span
+        class="posted"
+      >+378&nbsp;weeks&nbsp;ago</span>
+        <p>The Eclipse Foundation is set to make available tomorrow its annual
+          coordinated release of open-source projects, which this year includes
+          some 18 million lines of code and updates to 23 different projects.</p></li>
+      <li><a
+        href="http://eclipse.dzone.com/articles/eclipse-34-hidden-treasures"
+        target="_blank"
+      >Eclipse 3.4 Hidden Treasures </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
+        <p>Eclipse 3.4 "Ganymede" will be released in the upcoming days. I've
+          been working with the RC builds for some time now and I like it.
+          Eclipse 3.4 is a better IDE and a more robust platform than its'
+          successor. In this post, I've gathered some new features which I like
+          and may be "off the beaten path".</p></li>
+      <li><a href="http://www.infoq.com/news/2008/06/eclipse-ganymede-jdt"
+        target="_blank"
+      >Eclipse Ganymede: An in-depth look at JDT (Java Development Tools) </a> <span
+        class="posted"
+      >+379&nbsp;weeks&nbsp;ago</span>
+        <p>As part of the upcoming Eclipse Ganymede release, scheduled for June
+          25th, InfoQ will cover a series of Eclipse subprojects. Today, the
+          subproject is JDT (Java Development Tools), which is releasing version
+          3.4. InfoQ spoke with Philippe Mulet, lead of the Eclipse project, and
+          Martin Aeschlimann, lead of the JDT UI subproject, to learn more about
+          what to expect in Ganymede.</p></li>
+      <li><a href="http://www.infoq.com/news/2008/06/eclipse-ganymede-pde"
+        target="_blank"
+      >Eclipse Ganymede: An in-depth look at PDE (Plugin Development
+          Environment) </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
+        <p>As part of the upcoming Eclipse Ganymede release which is scheduled
+          for June 25th, InfoQ will cover a series of Eclipse subprojects.
+          Today, the subproject is PDE (Plugin Development Environment), which
+          is releasing version 3.4. InfoQ spoke with Chris Aniszczyk, PDE
+          Technical Lead and Principal Consultant at Code9, to learn more about
+          PDE and what it provides.</p></li>
+      <li><a href="http://www.infoq.com/news/2008/06/eclipse-ganymede-mylyn"
+        target="_blank"
+      >Eclipse Ganymede: An in-depth look at Mylyn </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
+        <p>As part of the upcoming Eclipse Ganymede release, scheduled for June
+          25th, InfoQ is covering a series of Eclipse subprojects. Today, the
+          topic is Mylyn. InfoQ spoke with Mik Kersten, lead of the Mylyn
+          project and President of Tasktop Technologies, to learn more about
+          what to expect in Ganymede.</p></li>
+      <li><a
+        href="http://www-128.ibm.com/developerworks/library/os-eclipse-ganymede/"
+        target="_blank"
+      >Eclipse Ganymede at a glance </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
+        <p>The Eclipse Ganymede release of 24 projects showcases the diversity
+          and innovation going on inside the Eclipse ecosystem. Get an overview
+          of several Ganymede projects, along with resources to find out more
+          information.</p></li>
+      <li><a
+        href="http://www.infoworld.com/article/08/06/19/Eclipse-readies-Ganymede-release_1.html"
+        target="_blank"
+      >Eclipse readies Ganymede release </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
+        <p>The Eclipse Foundation next week is set to offer its annual
+          simultaneous release of open-source project updates, this time called
+          the Ganymede Release and featuring improvements in the core OSGI-based
+          component model and SOA tools.</p></li>
+      <li><a href="http://www.infoq.com/news/2008/06/eclipse-ganymede-rap"
+        target="_blank"
+      >Eclipse Ganymede: An in-depth look at RAP (Rich Ajax Platform) </a> <span
+        class="posted"
+      >+379&nbsp;weeks&nbsp;ago</span>
+        <p>As part of the upcoming Eclipse Ganymede release which is scheduled
+          for June 25th, InfoQ will cover a series of Eclipse subprojects.
+          Today, the subproject is RAP (Rich Ajax Platform), which is releasing
+          version 1.1. InfoQ spoke with Jochen Krause to learn more about RAP
+          and what it provides.</p></li>
+      <li><a
+        href="http://eclipse.dzone.com/articles/understanding-eclipse-p2-provi"
+        target="_blank"
+      >Understanding the Eclipse p2 Provisioning System </a> <span
+        class="posted"
+      >+379&nbsp;weeks&nbsp;ago</span>
+        <p>p2 is the new provisioning system which will be provided along with
+          the Eclipse Ganymede release on June 25th. This is one feature that I
+          didn't really follow closely enough,so I was really happy when I
+          called Pascal Rapicault to get an explanation from the project
+          lead.Ian Skerrett has recently blogged about 10 reasons p2 is going to
+          rock, and after reading this, I'm sure you'll agree.</p></li>
+      <li><a
+        href="http://searchsoa.techtarget.com/news/article/0,289142,sid26_gci1317879,00.html"
+        target="_blank"
+      >Eclipse Ganymede Part 1: What's in it for SOA? </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
+        <p>This is the first in a series of four articles previewing the Eclipse
+          Foundation's annual downloadable project release, code named Ganymede,
+          which is set for Wednesday, June 25.</p></li>
+      <li><a href="http://www.infoq.com/news/2008/06/eclipse-ganymede-ecf"
+        target="_blank"
+      >Eclipse Ganymede: An in-depth look at ECF (Eclipse Communication
+          Framework) </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
+        <p>s part of the upcoming Eclipse Ganymede release, scheduled for June
+          25th, InfoQ is covering a series of Eclipse subprojects. Today, the
+          topic is the Eclipse Communication Framework. InfoQ spoke with Scott
+          Lewis, project lead for ECF and Principal at his consulting company,
+          Composent, Inc to learn more about ECF and what capabilities it
+          provides.</p></li>
+      <li><a href="http://www.infoq.com/news/2008/06/eclipse-ganymede-p2"
+        target="_blank"
+      >Eclipse Ganymede: An in-depth look at Equinox p2 (Provisioning Platform)
+      </a> <span class="posted">+380&nbsp;weeks&nbsp;ago</span>
+        <p>As part of the upcoming Eclipse Ganymede release, scheduled for June
+          25th, InfoQ will cover a series of Eclipse subprojects. Today, the
+          subproject is Equinox p2 (Provisioning Platform), which is a framework
+          for provisioning Eclipse-based applications. InfoQ spoke with Jeff
+          McAffer and Pascal Rapicault to learn more about p2 and what it
+          provides.</p></li>
+      <li><a
+        href="http://www.theregister.co.uk/2008/06/16/eclipse_ganymede_overview/"
+        target="_blank"
+      >Eclipse projects squeeze into record Summer fun pack </a> <span
+        class="posted"
+      >+380&nbsp;weeks&nbsp;ago</span>
+        <p>
+          The Eclipse Foundation's annual code blitz - this year under the name
+          Ganymede - kicks off at the end of this month with 24 Eclipse projects
+          co-ordinating their new releases.<br />Now in its third year, this
+          annual big push keeps getting bigger. Ganymede is Eclipse's largest
+          co-ordinate release of updated projects to-date, beating last year's
+          update by three.
+        </p></li>
     </ul>
-  </aside>
-    <div id="midcolumn">
-      <img
-        src="http://dev.eclipse.org/large_icons/devices/network-wireless.png">
-      <h1 class="inline">Ganymede Buzz</h1>
-
-      <div class="homeitem3col">
-        <h3>Community Buzz</h3>
-        <ul>
-
-          <li><a href="http://www.myeclipseide.com/Article79.html"
-            target="_blank">MyEclipse Delivers Advanced Ajax Tools for
-              Ganymede </a> <span class="posted">+371&nbsp;weeks&nbsp;ago</span>
-            <p>Genuitec is pleased to announce today the immediate
-              availability of MyEclipse Enterprise Workbench 7.0
-              milestone 1. This milestone release delivers advanced Ajax
-              tooling for Java EE and full Application Lifecycle
-              Management (ALM) capabilities for Eclipse 3.4 Ganymede,
-              among other enhancements.</p></li>
-
-          <li><a
-            href="http://www.protecode.com/site/pdf/GA%20Availability%20Press%20Rel.pdf"
-            target="_blank">Protecode Annouces General Availability of
-              Governance and Intellectual Property Management Software </a>
-            <span class="posted">+376&nbsp;weeks&nbsp;ago</span>
-            <p>Protecode Inc., today announced the general availability
-              of its software development tool for governance and
-              Intellectual Property (IP) management. The latest release
-              enables commercial software developers and open source
-              creators to accelerate managed adoption of open source
-              code in a simple, painless process. Additionally, the
-              software is now available to the Eclipse community for
-              anyone working on an active Eclipse project.</p></li>
-
-          <li><a href="http://www.ddj.com/linux-open-source/208802482"
-            target="_blank">The Eclipse Ganymede Release </a> <span
-            class="posted">+376&nbsp;weeks&nbsp;ago</span>
-            <p>Dr. Dobb's talks to Mike Milinkovich, Executive Director
-              of the Eclipse Foundation, about the Eclipse Ganymede
-              release, a coordinated release of 23 different Eclipse
-              project teams and represents over 18 million lines of
-              code.</p></li>
-
-          <li><a
-            href="http://www.froglogic.com/pg?id=NewsEvents&category=98"
-            target="_blank">Java GUI Testing Tool Squish Supports New
-              Eclipse "Ganymede" 3.4 </a> <span class="posted">+377&nbsp;weeks&nbsp;ago</span>
-            <p>
-              froglogic GmbH today announced support for automated
-              testing of Java Rich Client Platform (RCP) applications
-              based on the new Eclipse 3.4 release code named Ganymede.<br />
-              Squish for Java is a leading functional GUI and regression
-              testing tool enabling the creation and execution of
-              automated GUI tests for Java SWT/RCP and AWT/Swing
-              applications.
-            </p></li>
-
-          <li><a href="http://www.ecommercetimes.com/story/63659.html"
-            target="_blank">Eclipse Release Is Great but Doesn't Reach
-              the Cloud </a> <span class="posted">+377&nbsp;weeks&nbsp;ago</span>
-            <p>The Eclipse Foundation has delivered a healthy package of
-              updates, right on time, for the third year in a row.
-              That's commendable, writes contributor Dana Gardner. What
-              he'd really like to see, however, is a greater commitment
-              on Eclipse's part to integrate with cloud-based
-              development.</p></li>
-
-          <li><a
-            href="http://eclipse.dzone.com/articles/eclipse-ganymede-18-million-li"
-            target="_blank">Eclipse Ganymede - 18 Million Lines of Code
-              Delivered on Schedule </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>As many of you may know the annual Eclipse release train,
-              called Ganymede, is now available. This is the third year
-              in a row that the Eclipse community has shipped a
-              coordinate release of multiple projects; 23 projects are
-              included this year. An important reason for the release
-              trains is to make it easier for Eclipse users and
-              adopters, who tend to use multiple projects, to upgrade to
-              a new release. A coordinated release schedule makes its
-              possible for timely upgrades in the Eclipse community.</p>
-          </li>
-
-          <li><a href="http://blogs.zdnet.com/Gardner/?p=2698"
-            target="_blank">Eclipse Foundation delivers Ganymede train
-              with 23 cars, but where are the cloud on-ramps? </a> <span
-            class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>For the third year in a row, the Eclipse community has
-              delivered, on the same day as in previous years, numerous
-              software updates across a wide range of projects.</p></li>
-
-          <li><a href="http://www.ddj.com/linux-open-source/208800860"
-            target="_blank">Eclipse Delivers Annual Release </a> <span
-            class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>"Once again the Eclipse community has delivered our
-              annual release train and continues to deliver innovative
-              software in a predictable manner," said Mike Milinkovich,
-              Executive Director of the Eclipse Foundation. "New
-              features like the Equinox p2 provisioning system, new
-              modeling tools and tools that support SOA developers will
-              be popular features for Eclipse users."</p></li>
-
-          <li><a href="http://www.devxnews.com/article.php/3755391"
-            target="_blank">Eclipse Ganymede Makes It Easier for Devs </a>
-            <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>Some open source efforts are satisfied with releasing one
-              or two projects a year. That's not the case with the open
-              source Eclipse Foundation, which today released 23
-              projects as part of its Ganymede release train.</p></li>
-
-          <li><a
-            href="http://www.instantiations.com/press/release/080625.html"
-            target="_blank">Instantiations Rolls Out Product Updates in
-              Conjunction with Eclipse 3.4 and Ganymede </a> <span
-            class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>Instantiations, Inc., a leading provider of software
-              quality and productivity solutions for the Eclipse
-              platform, today announced that its entire Eclipse-based
-              product line has been updated to coincide with the annual
-              Eclipse open source release, Ganymede. Included with the
-              roll-out are significant additions in the area of security
-              to its CodePro
-              AnalytiX&Atilde;&fnof;&Acirc;&cent;&Atilde;&cent;&acirc;&sbquo;&not;&Aring;&frac34;&Atilde;&sbquo;&Acirc;&cent;
-              comprehensive code quality product, bringing advanced
-              standards-based security auditing to developers desktops
-              as they write code. The Ganymede release train includes
-              Eclipse 3.4, the annual release of the Eclipse platform,
-              which was delivered today.</p></li>
-
-          <li><a
-            href="http://www.emediawire.com/releases/2008/6/prweb1055254.htm"
-            target="_blank">Migrate Easily to Eclipse 3.4 Ganymede,
-              Manage Configurations with Pulse </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>
-              Genuitec, LLC, a founding member of the Eclipse
-              Foundation, announced today the general availability of
-              Pulse 2.2, the free and easiest way to obtain, manage and
-              configure Eclipse Ganymede and plugins. <br />Genuitec is
-              pleased to offer this product to Pulse users on the day of
-              the Ganymede release. As of today, Pulse 2.2 will support
-              full Ganymede tool stacks.
-            </p></li>
-
-          <li><a href="http://tasktop.com/blog/?p=32" target="_blank">Mylyn
-              3.0 released </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>The Mylyn team is very pleased to announce
-              today&Atilde;&fnof;&Acirc;&cent;&Atilde;&cent;&acirc;&euro;&scaron;&Acirc;&not;&Atilde;&cent;&acirc;&euro;&#382;&Acirc;&cent;s
-              release of Mylyn 3.0 along with the Eclipse Ganymede
-              release train. This occasion marks a big step in the
-              evolution of the task-focused interface</p></li>
-
-          <li><a href="http://www.adtmag.com/article.aspx?id=22837"
-            target="_blank">Eclipse's Third 'Release Train' on Schedule
-          </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>On Wednesday June 25 the Eclipse Foundation is sending
-              its third annual "release train" chugging down the track.
-              This year's synchronized launch of several Eclipse
-              projects at once (code named "Ganymede") involved the
-              coordinated release of 23 projects, up from 21 in last
-              year's "Europa" release, and 10 in 2006 with the original
-              "Callisto" release. One of the goals of the release-train
-              strategy, said Eclipse Foundation executive director Mike
-              Milinkovich, is to provide "a level of predictability"
-              that will promote commercial adoption of the Eclipse
-              community's products.</p></li>
-
-          <li><a
-            href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9102838"
-            target="_blank">Eclipse set for coordinated release of 23
-              updates </a> <span class="posted">+378&nbsp;weeks&nbsp;ago</span>
-            <p>The Eclipse Foundation is set to make available tomorrow
-              its annual coordinated release of open-source projects,
-              which this year includes some 18 million lines of code and
-              updates to 23 different projects.</p></li>
-
-          <li><a
-            href="http://eclipse.dzone.com/articles/eclipse-34-hidden-treasures"
-            target="_blank">Eclipse 3.4 Hidden Treasures </a> <span
-            class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>Eclipse 3.4 "Ganymede" will be released in the upcoming
-              days. I've been working with the RC builds for some time
-              now and I like it. Eclipse 3.4 is a better IDE and a more
-              robust platform than its' successor. In this post, I've
-              gathered some new features which I like and may be "off
-              the beaten path".</p></li>
-
-          <li><a
-            href="http://www.infoq.com/news/2008/06/eclipse-ganymede-jdt"
-            target="_blank">Eclipse Ganymede: An in-depth look at JDT
-              (Java Development Tools) </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>As part of the upcoming Eclipse Ganymede release,
-              scheduled for June 25th, InfoQ will cover a series of
-              Eclipse subprojects. Today, the subproject is JDT (Java
-              Development Tools), which is releasing version 3.4. InfoQ
-              spoke with Philippe Mulet, lead of the Eclipse project,
-              and Martin Aeschlimann, lead of the JDT UI subproject, to
-              learn more about what to expect in Ganymede.</p></li>
-
-          <li><a
-            href="http://www.infoq.com/news/2008/06/eclipse-ganymede-pde"
-            target="_blank">Eclipse Ganymede: An in-depth look at PDE
-              (Plugin Development Environment) </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>As part of the upcoming Eclipse Ganymede release which is
-              scheduled for June 25th, InfoQ will cover a series of
-              Eclipse subprojects. Today, the subproject is PDE (Plugin
-              Development Environment), which is releasing version 3.4.
-              InfoQ spoke with Chris Aniszczyk, PDE Technical Lead and
-              Principal Consultant at Code9, to learn more about PDE and
-              what it provides.</p></li>
-
-          <li><a
-            href="http://www.infoq.com/news/2008/06/eclipse-ganymede-mylyn"
-            target="_blank">Eclipse Ganymede: An in-depth look at Mylyn
-          </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>As part of the upcoming Eclipse Ganymede release,
-              scheduled for June 25th, InfoQ is covering a series of
-              Eclipse subprojects. Today, the topic is Mylyn. InfoQ
-              spoke with Mik Kersten, lead of the Mylyn project and
-              President of Tasktop Technologies, to learn more about
-              what to expect in Ganymede.</p></li>
-
-          <li><a
-            href="http://www-128.ibm.com/developerworks/library/os-eclipse-ganymede/"
-            target="_blank">Eclipse Ganymede at a glance </a> <span
-            class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>The Eclipse Ganymede release of 24 projects showcases the
-              diversity and innovation going on inside the Eclipse
-              ecosystem. Get an overview of several Ganymede projects,
-              along with resources to find out more information.</p></li>
-
-          <li><a
-            href="http://www.infoworld.com/article/08/06/19/Eclipse-readies-Ganymede-release_1.html"
-            target="_blank">Eclipse readies Ganymede release </a> <span
-            class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>The Eclipse Foundation next week is set to offer its
-              annual simultaneous release of open-source project
-              updates, this time called the Ganymede Release and
-              featuring improvements in the core OSGI-based component
-              model and SOA tools.</p></li>
-
-          <li><a
-            href="http://www.infoq.com/news/2008/06/eclipse-ganymede-rap"
-            target="_blank">Eclipse Ganymede: An in-depth look at RAP
-              (Rich Ajax Platform) </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>As part of the upcoming Eclipse Ganymede release which is
-              scheduled for June 25th, InfoQ will cover a series of
-              Eclipse subprojects. Today, the subproject is RAP (Rich
-              Ajax Platform), which is releasing version 1.1. InfoQ
-              spoke with Jochen Krause to learn more about RAP and what
-              it provides.</p></li>
-
-          <li><a
-            href="http://eclipse.dzone.com/articles/understanding-eclipse-p2-provi"
-            target="_blank">Understanding the Eclipse p2 Provisioning
-              System </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>p2 is the new provisioning system which will be provided
-              along with the Eclipse Ganymede release on June 25th. This
-              is one feature that I didn't really follow closely
-              enough,so I was really happy when I called Pascal
-              Rapicault to get an explanation from the project lead.Ian
-              Skerrett has recently blogged about 10 reasons p2 is going
-              to rock, and after reading this, I'm sure you'll agree.</p>
-          </li>
-
-          <li><a
-            href="http://searchsoa.techtarget.com/news/article/0,289142,sid26_gci1317879,00.html"
-            target="_blank">Eclipse Ganymede Part 1: What's in it for
-              SOA? </a> <span class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>This is the first in a series of four articles previewing
-              the Eclipse Foundation's annual downloadable project
-              release, code named Ganymede, which is set for Wednesday,
-              June 25.</p></li>
-
-          <li><a
-            href="http://www.infoq.com/news/2008/06/eclipse-ganymede-ecf"
-            target="_blank">Eclipse Ganymede: An in-depth look at ECF
-              (Eclipse Communication Framework) </a> <span
-            class="posted">+379&nbsp;weeks&nbsp;ago</span>
-            <p>s part of the upcoming Eclipse Ganymede release,
-              scheduled for June 25th, InfoQ is covering a series of
-              Eclipse subprojects. Today, the topic is the Eclipse
-              Communication Framework. InfoQ spoke with Scott Lewis,
-              project lead for ECF and Principal at his consulting
-              company, Composent, Inc to learn more about ECF and what
-              capabilities it provides.</p></li>
-
-          <li><a
-            href="http://www.infoq.com/news/2008/06/eclipse-ganymede-p2"
-            target="_blank">Eclipse Ganymede: An in-depth look at
-              Equinox p2 (Provisioning Platform) </a> <span
-            class="posted">+380&nbsp;weeks&nbsp;ago</span>
-            <p>As part of the upcoming Eclipse Ganymede release,
-              scheduled for June 25th, InfoQ will cover a series of
-              Eclipse subprojects. Today, the subproject is Equinox p2
-              (Provisioning Platform), which is a framework for
-              provisioning Eclipse-based applications. InfoQ spoke with
-              Jeff McAffer and Pascal Rapicault to learn more about p2
-              and what it provides.</p></li>
-
-          <li><a
-            href="http://www.theregister.co.uk/2008/06/16/eclipse_ganymede_overview/"
-            target="_blank">Eclipse projects squeeze into record Summer
-              fun pack </a> <span class="posted">+380&nbsp;weeks&nbsp;ago</span>
-            <p>
-              The Eclipse Foundation's annual code blitz - this year
-              under the name Ganymede - kicks off at the end of this
-              month with 24 Eclipse projects co-ordinating their new
-              releases.<br />Now in its third year, this annual big push
-              keeps getting bigger. Ganymede is Eclipse's largest
-              co-ordinate release of updated projects to-date, beating
-              last year's update by three.
-            </p></li>
-        </ul>
-      </div>
-    </div>
-    <div id="rightcolumn">
-      <div class='sideitem'>
-        <h6>Related Links</h6>
-        <ul>
-          <li><a href="mapList.php">Ganymede Around the World</a></li>
-          <li><a href="friends.php">Friends of Ganymede</a></li>
-        </ul>
-      </div>
-    </div>
-
-</div>
\ No newline at end of file
+  </div>
+</div>
+<div id="rightcolumn">
+  <div class='sideitem'>
+    <h6>Related Links</h6>
+    <ul>
+      <li><a href="mapList.php">Ganymede Around the World</a></li>
+      <li><a href="friends.php">Friends of Ganymede</a></li>
+    </ul>
+  </div>
+</div>
diff --git a/content/en_friends.php b/content/en_friends.php
index adc43ec..f050a3b 100644
--- a/content/en_friends.php
+++ b/content/en_friends.php
@@ -1,81 +1,45 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 <div id="ganymedeHeader">
   <div id="headerGraphic">
     <map name="ganymedeHeaderIMap">
       <area shape="rect" coords="71,61,440, 124" href="/ganymede/">
       <area shape="rect" coords="450,60,745,125"
-        href="/downloads/packages/release/ganymede/sr2">
+        href="/downloads/packages/release/ganymede/sr2"
+      >
     </map>
     <img src="/ganymede/images/ganymedeHeaderThin.jpg"
-      usemap="#ganymedeHeaderIMap">
+      usemap="#ganymedeHeaderIMap"
+    >
   </div>
 </div>
-<!-- nav -->
-<aside id="leftcol" class="col-md-4">
-  <ul id="leftnav" class="ul-left-nav fa-ul hidden-print">
-
-
-    <li class="separator"><a class="separator" href="/ganymede/">
-        Ganymede </a></li>
-
-
-
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/downloads/packages/" target="_self"> Download Ganymede </a>
-    </li>
-
-
-
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/learn.php" target="_self"> Learn more about
-        Ganymede </a></li>
-
-
-
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/buzz.php" target="_self"> Ganymede Buzz </a></li>
-
-
-
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/mapList.php" target="_self"> Ganymede Around the World
-    </a></li>
-
-  </ul>
-</aside>
 <div id="midcolumn">
-  <div>
-    <h1>Friends of Ganymede</h1>
-    <p>Want to join the Friends of Ganymede? Put one of these images up
-      on your website.</p>
-    <div>
-      <h2>Square Button (160 x 160 px)</h2>
-      <img border=0 alt="Ganymede is Coming" title="Eclipse Ganymede"
-        src="images/ganymedeFriend.jpg"><br /> <br />
-      <textarea class="smallType" cols=60 rows=4 readonly>&lt;a href="http://www.eclipse.org/ganymede/"&gt;&lt;img src="http://www.eclipse.org/ganymede/images/ganymedeFriend.jpg" border=0 alt="Ganymede is coming!" title="Ganymede is coming!" &gt;&lt;/a&gt;</textarea>
-    </div>
-    <br /> <br />
-    <div>
-      <h2>Ganymede Wallpapers</h2>
-      <img border=0 alt="Ganymede Wallpaper"
-        src="images/wallpaperThumb.jpg"><br /> <br /> Decorate your
-      Desktop with one of these Ganymede Wallpapers.<br /> <a
-        href="images/wallpaper1024.jpg">1024x768</a> - <a
-        href="images/wallpaper1280.jpg">1280x960</a> - <a
-        href="images/wallpaper1600.jpg">1600x1200</a> - <a
-        href="images/wallpaper1680.jpg">1680x1050</a><br /> <br />
-    </div>
-  </div>
+  <h1>Friends of Ganymede</h1>
+  <p>Want to join the Friends of Ganymede? Put one of these images up on your
+    website.</p>
+  <h2>Square Button (160 x 160 px)</h2>
+  <img border=0 alt="Ganymede is Coming" title="Eclipse Ganymede"
+    src="images/ganymedeFriend.jpg"
+  ><br /> <br />
+  <textarea class="smallType" cols=60 rows=4 readonly>&lt;a href="http://www.eclipse.org/ganymede/"&gt;&lt;img src="http://www.eclipse.org/ganymede/images/ganymedeFriend.jpg" border=0 alt="Ganymede is coming!" title="Ganymede is coming!" &gt;&lt;/a&gt;</textarea>
+  <h2>Ganymede Wallpapers</h2>
+  <img border=0 alt="Ganymede Wallpaper" src="images/wallpaperThumb.jpg"><br />
+  <br /> Decorate your Desktop with one of these Ganymede Wallpapers.<br /> <a
+    href="images/wallpaper1024.jpg"
+  >1024x768</a> - <a href="images/wallpaper1280.jpg">1280x960</a> - <a
+    href="images/wallpaper1600.jpg"
+  >1600x1200</a> - <a href="images/wallpaper1680.jpg">1680x1050</a><br /> <br />
 </div>
\ No newline at end of file
diff --git a/content/en_index.php b/content/en_index.php
index e094769..fac9730 100644
--- a/content/en_index.php
+++ b/content/en_index.php
@@ -1,15 +1,17 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 <div class="col-sm-24">
   <div id="ganymedeHeader">
@@ -17,10 +19,12 @@
       <map name="ganymedeHeaderIMap">
         <area shape="rect" coords="71,61,440, 124" href="/ganymede/">
         <area shape="rect" coords="450,60,745,125"
-          href="/downloads/packages/release/ganymede/sr2">
+          href="/downloads/packages/release/ganymede/sr2"
+        >
       </map>
       <img src="/ganymede/images/ganymedeHeaderThin.jpg"
-        usemap="#ganymedeHeaderIMap">
+        usemap="#ganymedeHeaderIMap"
+      >
     </div>
   </div>
   <div id="widecontent">
@@ -29,41 +33,37 @@
       <tr>
         <td colspan="5">
           <p>
-            Eclipse Ganymede is the annual release of Eclipse projects
-            in 2008; this year including 23 projects. Some highlights of
-            the release include the new p2 provisioning platform, new
-            Equinox security features, new Ecore modeling tools, support
-            for SOA and much more. Use the links below to download and
-            discover more about the projects in the Ganymede release. <br />
-            <br />
+            Eclipse Ganymede is the annual release of Eclipse projects in 2008;
+            this year including 23 projects. Some highlights of the release
+            include the new p2 provisioning platform, new Equinox security
+            features, new Ecore modeling tools, support for SOA and much more.
+            Use the links below to download and discover more about the projects
+            in the Ganymede release. <br /> <br />
           </p>
           <p>
             Click <a href="http://wiki.eclipse.org/Simultaneous_Release">here</a>
             to find out about the newest Eclipse Simultaneous Release
           </p>
-
         </td>
       </tr>
       <tr>
         <td align="center" valign="top"><a
-          href="/downloads/packages/release/ganymede/sr2"><img
-            src="http://dev.eclipse.org/huge_icons/actions/document-save.png" /></a><br />
-          <a href="/downloads/packages/release/ganymede/sr2">Download
-            Ganymede</a></td>
+          href="/downloads/packages/release/ganymede/sr2"
+        ><img src="http://dev.eclipse.org/huge_icons/actions/document-save.png" /></a><br />
+          <a href="/downloads/packages/release/ganymede/sr2">Download Ganymede</a></td>
         <td align="center" valign="top"><a href="learn.php"><img
-            src="http://dev.eclipse.org/huge_icons/actions/system-search.png" /></a><br />
-          <a href="learn.php">Learn&nbsp;more about&nbsp;Ganymede</a></td>
+            src="http://dev.eclipse.org/huge_icons/actions/system-search.png"
+          /></a><br /> <a href="learn.php">Learn&nbsp;more about&nbsp;Ganymede</a></td>
         <td align="center" valign="top"><a href="buzz.php"><img
-            src="http://dev.eclipse.org/huge_icons/devices/network-wireless.png" /></a><br />
-          <a href="buzz.php">Ganymede Buzz</a></td>
+            src="http://dev.eclipse.org/huge_icons/devices/network-wireless.png"
+          /></a><br /> <a href="buzz.php">Ganymede Buzz</a></td>
         <td align="center" valign="top"><a href="mapList.php"><img
-            src="http://dev.eclipse.org/huge_icons/categories/applications-internet.png" /></a><br />
-          <a href="mapList.php">Ganymede&nbsp;Around the&nbsp;World</a></td>
+            src="http://dev.eclipse.org/huge_icons/categories/applications-internet.png"
+          /></a><br /> <a href="mapList.php">Ganymede&nbsp;Around the&nbsp;World</a></td>
         <td align="center" valign="top"><a href="/donate/"><img
-            src="http://dev.eclipse.org/huge_icons/apps/system-users.png" /></a><br />
-          <a href="/donate/">Friends of Eclipse</a></td>
+            src="http://dev.eclipse.org/huge_icons/apps/system-users.png"
+          /></a><br /> <a href="/donate/">Friends of Eclipse</a></td>
       </tr>
     </table>
   </div>
-
 </div>
\ No newline at end of file
diff --git a/content/en_learn.php b/content/en_learn.php
index 73460a9..4533157 100644
--- a/content/en_learn.php
+++ b/content/en_learn.php
@@ -1,1345 +1,1296 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 <div id="ganymedeHeader">
   <div id="headerGraphic">
     <map name="ganymedeHeaderIMap">
       <area shape="rect" coords="71,61,440, 124" href="/ganymede/">
       <area shape="rect" coords="450,60,745,125"
-        href="/downloads/packages/release/ganymede/sr2">
+        href="/downloads/packages/release/ganymede/sr2"
+      >
     </map>
     <img src="/ganymede/images/ganymedeHeaderThin.jpg"
-      usemap="#ganymedeHeaderIMap">
+      usemap="#ganymedeHeaderIMap"
+    >
   </div>
 </div>
-<aside id="leftcol" class="col-md-4">
-  <ul id="leftnav" class="ul-left-nav fa-ul hidden-print">
-    <li class="separator"><a class="separator" href="/ganymede/">
-        Ganymede </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/downloads/packages/" target="_self"> Download Ganymede </a>
-    </li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/learn.php" target="_self"> Learn more about
-        Ganymede </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/buzz.php" target="_self"> Ganymede Buzz </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/mapList.php" target="_self"> Ganymede Around the World
-    </a></li>
-
-  </ul>
-</aside>
 <div id="midcolumn">
-
-
   <div class="title">
     <img align="absbottom"
-      src="http://dev.eclipse.org/large_icons/actions/system-search.png" />
+      src="http://dev.eclipse.org/large_icons/actions/system-search.png"
+    />
     <h1 class="inline">Learn more about Ganymede</h1>
   </div>
   <div id="intro">
     <p>
       Browse our Ganymede Demos from <a href="http://live.eclipse.org"
-        target="_blank">Eclipse Live</a> or view the list of Ganymede
-      Projects.
+        target="_blank"
+      >Eclipse Live</a> or view the list of Ganymede Projects.
     </p>
   </div>
   <div id="dataBox">
     <div id="tabData">
-
-
-      <table cellspacing=0 class="webinars">
+      <table class="table table-striped">
         <tr class="header">
-          <td width="35%">Project Name</td>
-          <td width="12%" align="center">Version</td>
-          <td width="10%" align="center">Project Summary</td>
-          <td width="12%" align="center">Download</td>
+          <th width="35%">Project Name</th>
+          <th width="12%">Version</th>
+          <th width="10%">Project Summary</th>
+          <th width="12%">Download</th>
         </tr>
         <tr class="tableRow">
           <td><b></b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.java-ee-config"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/java-ee-config/download.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.java-ee-config"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/java-ee-config/download.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b></b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmt.umlx"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/gmt/downloads/?project=umlx">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.gmt.umlx"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/gmt/downloads/?project=umlx"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b></b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.sdo"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="/modeling/emf/downloads/?project=sdo">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.sdo"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/modeling/emf/downloads/?project=sdo">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b></b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.cdt.tcf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.cdt.tcf"
+          ><img src="images/homepage.gif"></a></td>
+          <td></td>
         </tr>
         <tr class="tableRow">
           <td><b></b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.emf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="/modeling/emf/downloads/?project=emf">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.emf"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/modeling/emf/downloads/?project=emf">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Acceleo</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t.acceleo"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/acceleo/download">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.m2t.acceleo"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/acceleo/download">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Accessibility Tools Framework</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.actf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/actf/downloads/index.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.actf"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/actf/downloads/index.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Agent Modeling Platform</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.amp"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://eclipse.org/amp/installing/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.amp"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/amp/installing/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Amalgamation</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.amalgam"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/downloads/packages/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.amalgam"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/downloads/packages/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>ATL</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mmt.atl"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://eclipse.org/mmt/downloads/?project=atl">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mmt.atl"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/mmt/downloads/?project=atl"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>BPEL Designer</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.bpel"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="https://hudson.eclipse.org/hudson/job/bpel-0.5/lastSuccessfulBuild/artifact/site/target/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=soa.bpel"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="https://hudson.eclipse.org/hudson/job/bpel-0.5/lastSuccessfulBuild/artifact/site/target/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>BPMN modeler</b></td>
-          <td align="center">1.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.bpmnmodeler"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"></td>
+          <td>1.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=soa.bpmnmodeler"
+          ><img src="images/homepage.gif"></a></td>
+          <td></td>
         </tr>
         <tr class="tableRow">
           <td><b>BPMN2 Modeler Project</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.bpmn2-modeler"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/bpmn2-modeler/downloads.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=soa.bpmn2-modeler"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/bpmn2-modeler/downloads.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Buckminster Component Assembly</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.buckminster"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/buckminster/downloads.html">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.buckminster"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/buckminster/downloads.html"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Business Intelligence and Reporting Tools (BIRT)</b></td>
-          <td align="center">2.3.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=birt"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/birt/downloads/">Download</a>
-          </td>
+          <td>2.3.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=birt"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/birt/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>C/C++ Development Tooling (CDT)</b></td>
-          <td align="center">5.0.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.cdt"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/cdt/downloads.php">Download</a>
+          <td>5.0.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.cdt"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/cdt/downloads.php">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>CDO Model Repository</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.cdo"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/cdo/downloads">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.cdo"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/cdo/downloads">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Code Recommenders</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.recommenders"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://eclipse.org/recommenders/download/">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.recommenders"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/recommenders/download/">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Dali Java Persistence Tools</b></td>
-          <td align="center">2.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.dali"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/dali/downloads.html">Download</a>
-          </td>
+          <td>2.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.dali"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/dali/downloads.html"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Data Tools Platform</b></td>
-          <td align="center">1.6 (\"Ganymede\")</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=datatools"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/datatools/downloads.php">Download</a>
-          </td>
+          <td>1.6 (\"Ganymede\")</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=datatools"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/datatools/downloads.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Device Debugging</b></td>
-          <td align="center">1.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=dsdp.dd"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/dsdp/dd/downloads/">Download</a>
-          </td>
+          <td>1.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=dsdp.dd"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/dsdp/dd/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Dynamic Languages Toolkit</b></td>
-          <td align="center">0.95</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.dltk"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/technology/dltk/downloads/">Download</a>
-          </td>
+          <td>0.95</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.dltk"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/technology/dltk/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Communication Framework</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.ecf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/ecf/downloads.php">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.ecf"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/ecf/downloads.php">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Communication Framework Project</b></td>
-          <td align="center">2.0.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.ecf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/ecf/downloads.php">Download</a>
+          <td>2.0.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.ecf"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/ecf/downloads.php">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Generation Factories (EGF)</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.egf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/downloads/download.php?file=/egf/tool/egf_1.0.0RC2/org.eclipse.egf_1.0.0.v20120528-1601.zip">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.egf"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/downloads/download.php?file=/egf/tool/egf_1.0.0RC2/org.eclipse.egf_1.0.0.v20120528-1601.zip"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Git Team Provider</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.egit"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="http://eclipse.org/egit/download">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.egit"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/egit/download">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Gyrex Project</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.gyrex"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/gyrex/download/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.gyrex"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/gyrex/download/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Model Framework Technology (EMFT)</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emft/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emft"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emft/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Modeling Framework (EMF)</b></td>
-          <td align="center">2.4.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emf/downloads/?project=emf">Download</a>
-          </td>
+          <td>2.4.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emf/downloads/?project=emf"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Packaging Project</b></td>
-          <td align="center">1.0.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.packaging"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/downloads/packages/">Download</a>
-          </td>
+          <td>1.0.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.packaging"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/downloads/packages/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Platform</b></td>
-          <td align="center">3.4</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.platform"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/eclipse/downloads/">Download</a>
-          </td>
+          <td>3.4</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=eclipse.platform"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/eclipse/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Project</b></td>
-          <td align="center">3.4</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/eclipse/">Download</a></td>
+          <td>3.4</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=eclipse"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="http://download.eclipse.org/eclipse/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Runtime Packaging Project</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.packaging.rtp"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="http://eclipse.org/rtp/downloads/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.packaging.rtp"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/rtp/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Scout</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.scout"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/scout/downloads/">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.scout"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/scout/downloads/">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Eclipse Web Tools Platform Project</b></td>
-          <td align="center">WTP 3.0.0 (Ganymede)</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td>WTP 3.0.0 (Ganymede)</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EclipseLink Project</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.eclipselink"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/eclipselink/downloads/index.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.eclipselink"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/eclipselink/downloads/index.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Ecore Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.ecoretools"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emft/downloads/?project=ecoretools">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emft.ecoretools"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emft/downloads/?project=ecoretools"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Compare</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.compare"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emft/downloads/?project=compare">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emft.compare"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emft/downloads/?project=compare"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Compare</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.compare"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emf/downloads/?project=compare">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.compare"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emf/downloads/?project=compare"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Diff/Merge</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.diffmerge"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://wiki.eclipse.org/EMF_DiffMerge/Download">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.diffmerge"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://wiki.eclipse.org/EMF_DiffMerge/Download"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Facet</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.emf-facet"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emft/facet/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emft.emf-facet"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emft/facet/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Query</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.query"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emf/downloads/?project=query">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.query"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emf/downloads/?project=query"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Query2</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.query2"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/modeling/emf/query2/updates/1.0/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.query2"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/modeling/emf/query2/updates/1.0/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Teneo Model Relational Mapping</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.teneo"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emf/downloads/?project=teneo">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.teneo"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emf/downloads/?project=teneo"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Transaction</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.transaction"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emf/downloads/?project=transaction">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.transaction"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emf/downloads/?project=transaction"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>EMF Validation</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.validation"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emf/downloads/?project=validation">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.validation"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emf/downloads/?project=validation"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Enterprise Tools for the OSGi Service Platform</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.libra"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/libra/download.php">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.libra"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/libra/download.php">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Equinox</b></td>
-          <td align="center">3.4</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.equinox"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/equinox/">Download</a></td>
+          <td>3.4</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.equinox"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="http://download.eclipse.org/equinox/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Equinox p2</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.equinox.p2"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/equinox/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.equinox.p2"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="http://download.eclipse.org/equinox/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Extended Editing Framework (EEF)</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.eef"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emft/downloads/?project=eef">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emft.eef"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emft/downloads/?project=eef"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Fortran Development Tools (Photran)</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.ptp.photran"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.ptp.photran"
+          ><img src="images/homepage.gif"></a></td>
+          <td></td>
         </tr>
         <tr class="tableRow">
           <td><b>Graphical Editing Framework (GEF)</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.gef"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/gef/downloads.php">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.gef"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/gef/downloads.php">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Graphical Modeling Framework</b></td>
-          <td align="center">2.1.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/gmf/downloads/">Download</a>
-          </td>
+          <td>2.1.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.gmf"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/gmf/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Graphical Modeling Framework (GMF) Notation</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmp.gmf-notation"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/gmp/downloads/?project=gmf-notation">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.gmp.gmf-notation"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/gmp/downloads/?project=gmf-notation"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Graphical Modeling Framework (GMF) Runtime</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmp.gmf-runtime"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/gmp/downloads/?project=gmf-runtime">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.gmp.gmf-runtime"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/gmp/downloads/?project=gmf-runtime"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Graphical Modeling Framework (GMF) Tooling</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmp.gmf-tooling"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/gmp/downloads/?project=gmf-tooling">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.gmp.gmf-tooling"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/gmp/downloads/?project=gmf-tooling"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Graphiti</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmp.graphiti"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/graphiti/download.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.gmp.graphiti"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/graphiti/download.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Hudson</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.hudson"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.hudson"
+          ><img src="images/homepage.gif"></a></td>
+          <td></td>
         </tr>
         <tr class="tableRow">
           <td><b>Intent</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.docs.intent"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/intent/download.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.docs.intent"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/intent/download.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Java development tools debug</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.jdt.debug"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/eclipse/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=eclipse.jdt.debug"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/eclipse/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Java Emitter Templates (JET2)</b></td>
-          <td align="center">M2T JET 0.9.0 (Ganymede)</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t.jet"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/m2t/downloads/?project=jet">Download</a>
-          </td>
+          <td>M2T JET 0.9.0 (Ganymede)</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.m2t.jet"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/m2t/downloads/?project=jet"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Java implementation of Git</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.jgit"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/jgit/download/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.jgit"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/jgit/download/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Java Workflow Tooling</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.jwt"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://wiki.eclipse.org/JWT_Downloads#Current_Releases">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=soa.jwt"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://wiki.eclipse.org/JWT_Downloads#Current_Releases"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>JavaScript Development Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.jsdt"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.jsdt"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>JavaServer Faces</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.jsf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.jsf"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>JDT - Java development tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.jdt"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/eclipse/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=eclipse.jdt"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/eclipse/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Jetty - Servlet Engine and Http Server</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.jetty"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/jetty/downloads.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.jetty"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/jetty/downloads.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Jubula Functional Testing Tool</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.jubula"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/jubula/download.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.jubula"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/jubula/download.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Koneki</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.koneki"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/koneki/download.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.koneki"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/koneki/download.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Linux Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.linuxtools"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/linuxtools/downloads.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.linuxtools"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/linuxtools/downloads.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Marketplace Client</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.packaging.mpc"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.packaging.mpc"
+          ><img src="images/homepage.gif"></a></td>
+          <td></td>
         </tr>
         <tr class="tableRow">
           <td><b>Maven Integration</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.m2e"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="http://eclipse.org/m2e/download/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.m2e"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/m2e/download/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Maven Integration for Web Tools Platform</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.m2e.m2e-wtp"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="m2e-wtp/download/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.m2e.m2e-wtp"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="m2e-wtp/download/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>MDT UML2</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.uml2"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="/modeling/mdt/downloads/?project=uml2">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mdt.uml2"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/modeling/mdt/downloads/?project=uml2">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>MDT UML2 Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.uml2-tools"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mdt.uml2-tools"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/mdt/downloads/?project=uml2tools"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>MDT XSD (XML Schema Definition)</b></td>
-          <td align="center">2.4.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.xsd"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/mdt/downloads/?project=xsd">Download</a>
-          </td>
+          <td>2.4.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mdt.xsd"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/mdt/downloads/?project=xsd"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Memory Analyzer</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.mat"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mat/downloads.php">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.mat"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mat/downloads.php">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Memory Analyzer</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.mat"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/mat/downloads.php">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.mat"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mat/downloads.php">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Mint</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.mint"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emft/downloads/?project=mint">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emft.mint"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emft/downloads/?project=mint"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mobile Tools for Java</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.sequoyah.mtj"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/dsdp/mtj/downloads/index.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.sequoyah.mtj"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/dsdp/mtj/downloads/index.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Model Development Tools (MDT)</b></td>
-          <td align="center">Ganymede</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/modeling/mdt/downloads/">Download</a>
-          </td>
+          <td>Ganymede</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mdt"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/modeling/mdt/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Model Discovery</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmt.modisco"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/gmt/modisco/download/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.gmt.modisco"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/gmt/modisco/download/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Model Focusing Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.context.mft"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.context.mft"
+          ><img src="images/homepage.gif"></a></td>
+          <td></td>
         </tr>
         <tr class="tableRow">
           <td><b>Model To Text (M2T)</b></td>
-          <td align="center">0.9.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/m2t/downloads/">Download</a>
-          </td>
+          <td>0.9.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.m2t"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/m2t/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Model-to-Model Transformation (MMT)</b></td>
-          <td align="center">Ganymede</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mmt"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mmt/downloads/">Download</a></td>
+          <td>Ganymede</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mmt"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mmt/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Modeling Team Framework</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.mtf"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emft.mtf"
+          ><img src="images/homepage.gif"></a></td>
+          <td></td>
         </tr>
         <tr class="tableRow">
           <td><b>Modeling Workflow Engine</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.mwe"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emft/downloads/?project=mwe">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.mwe"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emft/downloads/?project=mwe"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>modeling.emft.mwe</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.mwe"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emft/downloads/?project=mwe">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emft.mwe"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emft/downloads/?project=mwe"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>MoDisco</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.modisco"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/MoDisco/downloads/">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mdt.modisco"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/MoDisco/downloads/">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn</b></td>
-          <td align="center">3.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.mylyn"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/mylyn/downloads">Download</a></td>
+          <td>3.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.mylyn"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn</b></td>
-          <td align="center">3.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/mylyn/downloads">Download</a></td>
+          <td>3.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn Builds</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.builds"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.builds"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn Commons</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.commons"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.commons"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn Context</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.context"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.context"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn Docs</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.docs"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.docs"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn Reviews</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.reviews"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.reviews"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn Tasks</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.tasks"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.tasks"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Mylyn Versions</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.versions"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=mylyn.versions"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/mylyn/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Net4j Signalling Platform</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.net4j"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/emf/downloads/index.php?project=net4j">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.emf.net4j"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/emf/downloads/index.php?project=net4j"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Object Teams</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.objectteams"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/objectteams/download.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.objectteams"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/objectteams/download.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>OCL (Object Constraint Language)</b></td>
-          <td align="center">1.2 (Ganymede)</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.ocl"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl">Download</a>
-          </td>
+          <td>1.2 (Ganymede)</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mdt.ocl"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/mdt/downloads/?project=ocl"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Orion</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.orion"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/orion/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=eclipse.orion"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="http://download.eclipse.org/orion/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Papyrus</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.papyrus"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/mdt/papyrus/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mdt.papyrus"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/mdt/papyrus/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Parallel Tools Platform (PTP)</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.ptp"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/ptp/downloads.php">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.ptp"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/ptp/downloads.php">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>PDE - Plugin Development Environment</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.pde"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/eclipse/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=eclipse.pde"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/eclipse/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>PHP Development Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.pdt"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/tools/pdt/downloads/index.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.pdt"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/tools/pdt/downloads/index.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Platform Ant</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.platform.ant"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/eclipse/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=eclipse.platform.ant"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/eclipse/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>QVT Operational</b></td>
-          <td align="center">1.0.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mmt.qvt-oml"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/mmt/downloads/index.php?project=qvto&showAll=0&showMax=5">Download</a>
-          </td>
+          <td>1.0.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mmt.qvt-oml"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/mmt/downloads/index.php?project=qvto&showAll=0&showMax=5"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Remote Application Platform</b></td>
-          <td align="center">1.1</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.rap"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/rap/downloads/">Download</a></td>
+          <td>1.1</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.rap"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/rap/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Riena Project</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.riena"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://wiki.eclipse.org/Riena_Getting_started">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.riena"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://wiki.eclipse.org/Riena_Getting_started"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Sapphire</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.sapphire"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/sapphire/downloads/index.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.sapphire"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/sapphire/downloads/index.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>SCA Tools</b></td>
-          <td align="center">1.0.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.sca"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://wiki.eclipse.org/SCA#Install">Download</a></td>
+          <td>1.0.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=soa.sca"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="http://wiki.eclipse.org/SCA#Install">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Sequoyah</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.sequoyah"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/sequoyah/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.sequoyah"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/sequoyah/downloads/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Server Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.servertools"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.servertools"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Sketch</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.sketch"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/sketch/download.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.sketch"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/sketch/download.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>SOA Tools</b></td>
-          <td align="center">1.0.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=stp"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/stp/download.php">Download</a>
+          <td>1.0.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=stp"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/stp/download.php">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Sphinx</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.sphinx"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/sphinx/download.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.mdt.sphinx"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/sphinx/download.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Stardust</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.stardust"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://git.eclipse.org/c/q=stardust">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=soa.stardust"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="http://git.eclipse.org/c/q=stardust">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Subversive - SVN Team Provider</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.subversive"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/subversive/downloads.php">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=technology.subversive"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/subversive/downloads.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Swordfish</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.swordfish"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/swordfish/downloads">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=soa.swordfish"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/swordfish/downloads"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Target Management</b></td>
-          <td align="center">3.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.tm"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/tm/downloads/index.php">Download</a>
-          </td>
+          <td>3.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.tm"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/tm/downloads/index.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b> Test and Performance Tools Platform Project</b></td>
-          <td align="center">4.5.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tptp"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/tptp/home/downloads/downloads.php">Download</a>
-          </td>
+          <td>4.5.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tptp"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/tptp/home/downloads/downloads.php"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>VE - Visual Editor</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.ve"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/tools/ve/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.ve"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/tools/ve/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Virgo</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.virgo"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/virgo/download/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=rt.virgo"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/virgo/download/">Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Web Services Tools</b></td>
-          <td align="center">WTP 3.0</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.webservices"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td>WTP 3.0</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.webservices"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Webtools Releng</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.releng"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.releng"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>WindowBuilder</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.windowbuilder"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="/windowbuilder/download.php">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.windowbuilder"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/windowbuilder/download.php">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>WTP Common Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.common"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.common"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>WTP EJB Tools</b></td>
-          <td align="center">WTP 3.0 (Ganymede)</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.ejbtools"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td>WTP 3.0 (Ganymede)</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.ejbtools"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>WTP Java EE Tools</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.jeetools"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.jeetools"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>WTP Source Editing</b></td>
-          <td align="center">3.0 (Ganymede)</td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.sourceediting"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://download.eclipse.org/webtools/downloads/">Download</a>
-          </td>
+          <td>3.0 (Ganymede)</td>
+          <td><a
+            href="/projects/project_summary.php?projectid=webtools.sourceediting"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="http://download.eclipse.org/webtools/downloads/"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Xpand</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t.xpand"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/modeling/m2t/downloads/?showAll=0&project=xpand">Download</a>
-          </td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.m2t.xpand"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a
+            href="/modeling/m2t/downloads/?showAll=0&project=xpand"
+          >Download</a></td>
         </tr>
         <tr class="tableRow">
           <td><b>Xtend</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.xtend"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a href="http://www.eclipse.org/xtend">Download</a>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=tools.xtend"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/xtend">Download</a>
           </td>
         </tr>
         <tr class="tableRow">
           <td><b>Xtext</b></td>
-          <td align="center"></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.tmf.xtext"><img
-              src="images/homepage.gif"></a></td>
-          <td align="center"><a
-            href="http://www.eclipse.org/Xtext/download/">Download</a></td>
+          <td></td>
+          <td><a
+            href="/projects/project_summary.php?projectid=modeling.tmf.xtext"
+          ><img src="images/homepage.gif"></a></td>
+          <td><a href="/Xtext/download/">Download</a></td>
         </tr>
       </table>
     </div>
diff --git a/content/en_map.php b/content/en_map.php
deleted file mode 100644
index 29c1b88..0000000
--- a/content/en_map.php
+++ /dev/null
@@ -1,227 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-?>
-	<script type="text/javascript" src="functions.js"></script>
-	<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAA85Ct-u89MRBL6KQDW1oYFRRVZIdxFKFwDr3XyDwet7lo3BxWzRQ-OiA6LG0_IUfBnGsh0fZU1lolWA"
-      type="text/javascript"></script>
-
-    <body onunload="GUnload()">
-  	 <div id="midcolumn">
-
-  	   <div class="mapDiv">
- 		<div class="dialog">
- 		<div class="dialogContent">
-  			<div class="t"></div>
-  			<!-- Your content goes here -->
-		  	<table class="dialogTable" cellspacing=0 cellpadding=0>
-	  			<tr>
-	  	  			<td style="text-align:center;font-size:120%" colspan="2">
-	  	  			  <h1>Ganymede Around the World</h1>
-	  	  			  <div align="center" style="width:100%"><p class="contestText">Join the Eclipse global community.  Write a blog, record a video/podcast, or leave a message on how you are using the new Ganymede release and have an opportunity to <b>win cool Eclipse stuff</b>. <a href="./aroundtheworld.php">Full details here</a>.</p> </div>
-	  	  			</td>
-	  	  		</tr>
-				<tr>
-					<td colspan="2"> <br/></td>
-				</tr>
-	  	  			<td valign="top" class="left">
-	  	  			  <div id="map" style="width:610px; height: 400px"></div>
-	  	  			  <div style="font-size:80%;text-align:right;padding-right:5px;"><a href="mapList.php">See a list of all the entries.</a></div>
-	  	  			</td>
-	  	  			<td valign="top" class="right">
-	  	  							<div class="form">
-					<form action="" method="POST" name="spotForm">
-					<table width="240" class="formBox">
-						<tr>
-							<td>Name<span class="required">*</span>:</td>
-							<td><input type="text" name="name" id="name"/></td>
-						</tr>
-						<tr>
-							<td>City<span class="required">*</span>:</td>
-							<td><input type="text" name="city" id="city"/></td>
-						</tr>
-						<tr>
-							<td>State/Prov:</td>
-							<td><input type="text" name="state" id="state"/></td>
-						</tr>
-						<tr>
-							<td>Country<span class="required">*</span>:</td>
-							<td><input type="text" name="country" id="country"/></td>
-						</tr>
-						<tr>
-							<td colspan="2">
-								<input name="type" type="radio" value="Blog" id="Blog" checked onclick="checkReq('Blog');"/>Blog
-								<input name="type" type="radio" value="Message" id="Message" onclick="checkReq('Message');"/>Message
-								<input name="type" type="radio" value="Recording" id="Recording" onclick="checkReq('Recording');"/>Recording
-							</td>
-						</tr>
-						<tr>
-							<td><div id="">Title:</div></td>
-							<td><div id=""><input type="text" name="title" id="title" value=""/></div></td>
-						</tr>
-						<tr>
-							<td>URL<span id="urlReq"class="required">*</span>:</td>
-							<td><input type="text" name="url" id="url" value="http://"/></td>
-						</tr>
-						<tr>
-							<td valign="top">Message<span id="messageReq" class="required invisible">*</span>:</td>
-							<td valign="top"><textarea cols=15 name="content" id="content"></textarea><br/><span style="font-size:80%;">(256 Character Max)</span></td>
-						</tr>
-						<tr>
-							<td colspan="2"><br/></td>
-						</tr>
-						<tr>
-							<td>Email:</td>
-							<td><input type="text" name="email" id="email"/></td>
-						</tr>
-						<tr>
-							<td><span id="urlReq"class="required">12 - 18=</span></td>
-							<td><input type="text" name="useranswer"/></td>
-						<tr>
-							<td colspan="2" style="font-size:80%;">To be included in the <a href="./aroundtheworld.php">Ganymede Around the World Contest</a> be sure to provide us with your email address.</td>
-						</tr>
-						<!--  <tr>
-							<td valign="top">Ganymede Projects:</td>
-							<td>
-								<div id="projects"><a class="expandProjects" onclick="showProjects()">Click here to choose which Ganymede Projects you are using.</a></div>
-							</td>
-						</tr>
-						<tr>
-							<td colspan=2>
-								<div id="selectProjects" class="invisible">
-									<table width="100%">
-										<tr>
-
-										</tr>
-									</table>
-								</div>
-							</td>
-						</tr> -->
-						<tr>
-							<td>&nbsp;</td>
-							<td>
-								<input type="hidden" id="lat" name="lat" value="0"/>
-								<input type="hidden" id="lng" name="lng" value="0"/>
-								<input type="hidden" name="securityanswer" value="czoxMzoidGUuT3RoYXNUSTV6cyI7"/>
-								<input type="button" value="Submit" onclick="fetchLocation();"/>
-							</td>
-						</tr>
-					</table>
-				</form>
-			</div>
-	  	  			</td>
-	  	  		</tr>
-	  	  		<tr>
-	  	  			<td align="center" class="left">
-	  	  				<div id="filters">
-	  	  					<input type="checkbox" id="BlogFilter" checked onclick="toggleType('Blog')"/>Blog (298)
-	  	  					<input type="checkbox" id="MessageFilter" checked onclick="toggleType('Message')"/>Message (417)
-	  	  					<input type="checkbox" id="RecordingFilter" checked onclick="toggleType('Recording')"/>Recording (14)
-	  	  				</div>
-	  	  			</td>
-	  	  			<td class="right">&nbsp;</td>
-	  	  		</tr>
-	  	  	</table>
-			</div>
- 			<div class="b"><div></div></div>
-		</div>
-		</div>
-  	 </div>
-	<hr class="clearer"/><br/><br/><br/><br/>
-	<hr class="clearer"/>
-
- <script type="text/javascript">
-    checkReq('');
-    if (GBrowserIsCompatible()) {
-      // arrays to hold copies of the markers used by the side_bar
-      // because the function closure trick doesnt work there
-      var gmarkers = [];
-      var gmarkersType = [];
-      var i = 0;
-      // A function to create the marker and set up the event window
-      function createMarker(point,html,type) {
-        var marker = new GMarker(point);
-        GEvent.addListener(marker, "click", function() {
-          marker.openInfoWindowHtml(html);
-        });
-        gmarkers[i] = marker;
-        gmarkersType[i] = type;
-        i++;
-        return marker;
-      }
-      // This function picks up the click and opens the corresponding info window
-      function myclick(i) {
-        GEvent.trigger(gmarkers[i], "click");
-      }
-      // create the map
-      var map = new GMap2(document.getElementById("map"));
-      map.addControl(new GSmallMapControl());
-      map.setCenter(new GLatLng(38.345739 ,-75.765338), 1);  //Center on Eclipse Foundation HQ
-	  //map.setMapType(G_HYBRID_MAP);
-      // Read the data from example.xml
-      var request = GXmlHttp.create();
-      request.open("GET", "mapData.php", true);
-      request.onreadystatechange = function() {
-        if (request.readyState == 4) {
-          var xmlDoc = GXml.parse(request.responseText);
-          // obtain the array of markers and loop through it
-          var markers = xmlDoc.documentElement.getElementsByTagName("marker");
-          for (var i = 0; i < markers.length; i++) {
-            // obtain the attribues of each marker
-            var lat = parseFloat(markers[i].getAttribute("lat"));
-            var lng = parseFloat(markers[i].getAttribute("lng"));
-            var point = new GLatLng(lat,lng);
-            var author = markers[i].getAttribute("author");
-            var location = markers[i].getAttribute("location");
-            var url = markers[i].getAttribute("url");
-            var type = markers[i].getAttribute("type");
-            var typeText = type;
-            var title = markers[i].getAttribute('title');
-			if (url == "http://")
-			{
-				url = "";
-			}
-           	if ((title.length == 0) && (url.length > 0)) // No title supplied so just display URL
-           	{
-           		typeText = type + ' - <a href="' + url + '" target=_"blank">' + url.substring(7) + '</a>';
-			}
-			else if ((title.length > 0) && (url.length == 0)) // No URL supplied so just display the title;
-			{
-				typeText = type + ' - ' + title;
-			}
-			else if ((title.length > 0) && (url.length > 0)) // We have both lets display both.
-			{
-            	typeText = type + ' - <a href="' + url + '" target=_"blank">' + title + '</a>';
-            }
-            else
-            {
-            	typeText = type;
-            }
-
-            var html = '<div class="infoWindow"><b>' + author + '</b><br/>' + location + '<br/>' + typeText + '<br/><br/>' + markers[i].textContent + '</div>';
-            // create the marker
-            var marker = createMarker(point, html,type );
-            map.addOverlay(marker);
-          }
-          // Markers have all been added, lets check to see if they should be visible
-
-          checkVisibility('Blog');
-          checkVisibility('Message');
-          checkVisibility('Recording');
-        }
-      }
-      request.send(null);
-    }
-    else {
-      alert("Sorry, the Google Maps API is not compatible with this browser");
-    }
-    </script>
diff --git a/content/en_mapList.php b/content/en_mapList.php
index b398a28..47b8a26 100644
--- a/content/en_mapList.php
+++ b/content/en_mapList.php
@@ -1,24 +1,25 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 <div id="midcolumn">
-  <h1>Ganymede Around the World</h1>
-  <br />
-  <table class="list">
+  <h1><?php print $pageTitle; ?></h1>
+  <table class="table table-striped">
     <tr class="header">
-      <td><a href="?sort=name">Name</a></td>
-      <td><a href="?sort=location_country">Location</a></td>
-      <td>Content</td>
+      <th><a href="?sort=name">Name</a></th>
+      <th><a href="?sort=location_country">Location</a></th>
+      <th>Content</th>
     </tr>
     <tr>
       <td>Juan Pino Rodr�guez</td>
@@ -879,7 +880,7 @@
     <tr>
       <td>Bug'sBeni</td>
       <td>Brussel, Belgium</td>
-      <td>Blog - <a href="http://www.eclipse.org" target="_blank">Java
+      <td>Blog - <a href="/" target="_blank">Java
           Power Man</a><br />Well let's have a look on this nice IDE...
         Is it good or not ? Anyway the real answer in couple of years ;)
       </td>
@@ -2674,7 +2675,7 @@
     <tr>
       <td>sylvain m</td>
       <td>la madeleine, france</td>
-      <td>Blog - <a href="http://www.eclipse.org" target="_blank">http://www.eclipse.org</a><br />
+      <td>Blog - <a href="/" target="_blank">/</a><br />
       </td>
     </tr>
     <tr>
@@ -2812,7 +2813,7 @@
     <tr>
       <td>Habin</td>
       <td>Trivandrum, India</td>
-      <td>Recording - <a href="http://www.eclipse.org" target="_blank">http://www.eclipse.org</a><br />
+      <td>Recording - <a href="/" target="_blank">/</a><br />
       </td>
     </tr>
     <tr>
@@ -3297,7 +3298,7 @@
     <tr>
       <td>Dimitar Dyankov</td>
       <td>Santa Barbara, USA</td>
-      <td>Blog - <a href="http://www.eclipse.org" target="_blank">Eclipse
+      <td>Blog - <a href="/" target="_blank">Eclipse
           Ganymede</a><br />thanks!
       </td>
     </tr>
@@ -4030,7 +4031,7 @@
     <tr>
       <td>Shravan Singh</td>
       <td>Mumbai, India</td>
-      <td>Message <br />http://www.eclipse.org/stp/ this has made my
+      <td>Message <br />//stp/ this has made my
         life. Thanks eclipse for these wonderful moons.
       </td>
     </tr>
@@ -4153,7 +4154,7 @@
         href="http://sandakith.wordpress.com/2008/06/23/eclipse-ganymede-poster-contest/"
         target="_blank"> Eclipse Ganymede Poster Contest </a><br />Next
         Eclipse WTP 3.0 Poster Contest You can vote from here,
-        http://www.eclipse.org/ganymede/postercontest.php There are some
+        //ganymede/postercontest.php There are some
         cool stuff to look at, Enjoy !!
       </td>
     </tr>
@@ -4185,7 +4186,7 @@
     <tr>
       <td>Ali Alauoubiy</td>
       <td>Edinburgh, UK</td>
-      <td>Blog - <a href="http://www.eclipse.org" target="_blank">Mr</a><br />
+      <td>Blog - <a href="/" target="_blank">Mr</a><br />
       </td>
     </tr>
     <tr>
@@ -4464,7 +4465,7 @@
     <tr>
       <td>Jochen Krause</td>
       <td>Karlsruhe, Germany</td>
-      <td>Message - <a href="http://eclipse.org/rap" target="_blank">RAP
+      <td>Message - <a href="/rap" target="_blank">RAP
           brings Ajax to Eclipse RCP</a><br />The Rich Ajax Platform
         (RAP) employs an architecture and usage similar the Rich Client
         Platform (RCP) and offers developers the opportunity to
@@ -4868,7 +4869,7 @@
         target="_blank">Eclipse Communication Framework</a><br />I'm the
         project lead for ECF, the Eclipse Communication Framework. I'm
         hoping people appreciate what ECF already provides, and ask for
-        more at http://www.eclipse.org/ecf.
+        more at //ecf.
       </td>
     </tr>
     <tr>
@@ -5383,7 +5384,7 @@
       <td>David Sciamma</td>
       <td>Toulouse, France</td>
       <td>Message - <a
-        href="http://www.eclipse.org/modeling/emft/?project=ecoretools#ecoretools"
+        href="//modeling/emft/?project=ecoretools#ecoretools"
         target="_blank">Ecore Tools powa !</a><br />We are organizing a
         Ganymede Demo Camp in Toulouse : come to share with the Eclipse
         community and to see Ecore Tools in action !
diff --git a/content/en_postercontest.php b/content/en_postercontest.php
index 319c9dd..5e2a4b1 100644
--- a/content/en_postercontest.php
+++ b/content/en_postercontest.php
@@ -1,331 +1,304 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ * Nathan Gervais (Eclipse Foundation) - Initial implementation
+ * Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
-<!-- nav -->
-<aside id="leftcol" class="col-md-4">
-  <ul id="leftnav" class="ul-left-nav fa-ul hidden-print">
-    <li class="separator"><a class="separator" href="/ganymede/">
-        Ganymede </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/downloads/packages/" target="_self"> Download Ganymede </a>
-    </li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/learn.php" target="_self"> Learn more about
-        Ganymede </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/buzz.php" target="_self"> Ganymede Buzz </a></li>
-    <li><i class="fa fa-angle-double-right orange fa-fw"></i> <a
-      href="/ganymede/mapList.php" target="_self"> Ganymede Around the World
-    </a></li>
-
-  </ul>
-</aside>
-<div id="maincontent">
-  <div id="midcolumn">
-    <h1>Ganymede Poster Contest</h1>
-
-    <p>
-      Eclipse community members displayed their Photoshop and Gimp
-      skills by redesigning movie posters and other graphics to showcase
-      Ganymede. Poster submissions have been reviewed and the community
-      has rewarded our hard working designers by <a
-        href="http://www.surveymonkey.com/s.aspx?sm=Jz7pU_2bHvyMaAidVDaEiXow_3d_3d"
-        target="blank">voting for their favourites</a>. (Voting closed
-      June 24, 2008, 5:00 pm EDT.) Click on any poster to see its
-      full-size version.
-    </p>
-
-    <p>
-      A very special thank you to Eclipse committer <a
-        href="http://divby0.blogspot.com/2008/05/ganymede-poster-contest.html">Nick
-        Boldt</a> for creating, organizing and sponsoring the Ganymede
-      poster contest.
-    </p>
-
-    <p>
-      <strong>Prizes</strong><br> 1st place: an Eclipse jacket and $50
-      to your favourite open source organization or free service
-      provider<br> 2nd place: an Eclipse jacket and $30 to your
-      favourite open source organization or free service provider<br>
-      3rd place: an Eclipse shirt and $20 to your favourite open source
-      organization or free service provider<br> 4th & 5th place: an
-      Eclipse shirt<br> <font size=0.4px><br>Note: Individuals are
-        allowed to submit multiple entries, but only one prize per
-        person will be awarded.</font>
-    </p>
-
-    <p>
-
-
-    <h2>Winners</h2>
-    <table align="top">
-      <tr height="250">
-        <td valign="top" width="260"><a
-          href="http://www.eclipse.org/ganymede/images/GanymedeMoon1Poster.jpg"
-          target="blank"><img
-            src="http://www.eclipse.org/ganymede/images/GanymedeMoon1Poster.jpg"
-            height="200" width="250" border="0"></a><br> <b>1st: Objects
-            on mirrors (Michael Tkacz)</b>
+<div id="midcolumn">
+  <h1>Ganymede Poster Contest</h1>
+  <p>
+    Eclipse community members displayed their Photoshop and Gimp skills by
+    redesigning movie posters and other graphics to showcase Ganymede. Poster
+    submissions have been reviewed and the community has rewarded our hard
+    working designers by <a
+      href="http://www.surveymonkey.com/s.aspx?sm=Jz7pU_2bHvyMaAidVDaEiXow_3d_3d"
+      target="blank"
+    >voting for their favourites</a>. (Voting closed June 24, 2008, 5:00 pm
+    EDT.) Click on any poster to see its full-size version.
+  </p>
+  <p>
+    A very special thank you to Eclipse committer <a
+      href="http://divby0.blogspot.com/2008/05/ganymede-poster-contest.html"
+    >Nick Boldt</a> for creating, organizing and sponsoring the Ganymede poster
+    contest.
+  </p>
+  <p>
+    <strong>Prizes</strong><br> 1st place: an Eclipse jacket and $50 to your
+    favourite open source organization or free service provider<br> 2nd place:
+    an Eclipse jacket and $30 to your favourite open source organization or free
+    service provider<br> 3rd place: an Eclipse shirt and $20 to your favourite
+    open source organization or free service provider<br> 4th & 5th place: an
+    Eclipse shirt<br> <br>Note: Individuals are allowed to submit multiple
+    entries, but only one prize per person will be awarded.
+  </p>
+  <h2>Winners</h2>
+  <table align="top">
+    <tr height="250">
+      <td valign="top" width="260"><a
+        href="/ganymede/images/GanymedeMoon1Poster.jpg"
+        target="blank"
+      ><img src="/ganymede/images/GanymedeMoon1Poster.jpg"
+          height="200" width="250" border="0"
+        ></a><br> <b>1st: Objects on mirrors (Michael Tkacz)</b>
         </p></td>
-        <td valign="top" width="167"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=102971"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=102971"
-            height="200" width="157" border="0"></a><br> <b>2nd: Lord Of
-            The Rings (Nick Hofstede)</b></td>
-        <td valign="top" width="163"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103391"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103391"
-            height="200" width="153" border="0"></a><br> <b>3rd:
-            Transformers (Benjamin Cabe)</b></td>
-        <td valign="top" width="161"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103019"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103019"
-            height="200" width="151" border="0"></a><br> <b>4th: Wall E
-            (Prakash G.R.)</b></td>
-        <td valign="top" width="145"><a
-          href="http://www.eclipse.org/ganymede/images/GanymedeMoon0Poster.jpg"
-          target="blank"><img
-            src="http://www.eclipse.org/ganymede/images/GanymedeMoon0Poster.jpg"
-            height="200" width="250" border="0"></a><br> <b>5th: Some
-            things are closer (Michael Tkacz)</b></td>
-      </tr>
-    </table>
-    <table align="top">
-      <tr height="250">
-        <td valign="top" width="147"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104847"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104847"
-            height="200" width="137" border="0"></a><br> <b>6th (tie):
-            Ice Age (Benjamin Cabe)</b></td>
-        <td valign="top" width="145"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103040"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103040"
-            height="200" width="135" border="0"></a><br> <b>6th (tie):
-            Ratatouille (Benjamin Cabe)</b></td>
-        <td valign="top" width="151"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=102944"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=102944"
-            height="200" width="141" border="0"></a><br> <b>8th:
-            Community created... Ganymede! (Benjamin Cabe)</b></td>
-        <td valign="top" width="140"><a
-          href="http://bp1.blogger.com/_i21-98vOfTA/SFIT6BQhm-I/AAAAAAAAAW0/FALIOzx_fMo/s400/children-of-the-code-ganymede.png"
-          target="blank"><img
-            src="http://bp1.blogger.com/_i21-98vOfTA/SFIT6BQhm-I/AAAAAAAAAW0/FALIOzx_fMo/s400/children-of-the-code-ganymede.png"
-            height="200" width="130" border="0"></a><br> <b>9th (3-way
-            tie): Children of the Corn<br>II (Nick Boldt)
-        </b></td>
-        <td valign="top" width="260"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=105350"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=105350"
-            height="200" width="250" border="0"></a><br> <b>9th (3-way
-            tie): Kill Bill, Vol. 3 (Kiril Mitov)</b></td>
-        <td valign="top" width="142"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103044"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103044"
-            height="200" width="132" border="0"></a><br> <b>9th (3-way
-            tie): 300 (Nick Hofstede)</b></td>
-      </tr>
-    </table>
-
-    <h2>Honourable Mentions</h2>
-    <table align="top">
-      <tr height="250">
-        <td valign="top" width="148"><a
-          href="http://bp3.blogger.com/_i21-98vOfTA/SD-AtQANotI/AAAAAAAAAVs/YoAOZpvpuE8/s200/Attack_of_the_15_Projects.png"
-          target="blank"><img
-            src="http://bp3.blogger.com/_i21-98vOfTA/SD-AtQANotI/AAAAAAAAAVs/YoAOZpvpuE8/s200/Attack_of_the_15_Projects.png"
-            height="200" width="138" border="0"></a><br> <b>Attack of
-            the 50 Foot Woman (Nick Boldt)</b></td>
-        <td valign="top" width="112"><a
-          href="http://bp0.blogger.com/_i21-98vOfTA/SFIT5xQhm9I/AAAAAAAAAWs/BfKXpprXpeA/s400/children-of-the-code.png"
-          target="blank"><img
-            src="http://bp0.blogger.com/_i21-98vOfTA/SFIT5xQhm9I/AAAAAAAAAWs/BfKXpprXpeA/s400/children-of-the-code.png"
-            height="200" width="102" border="0"></a><br> <b>Children of
-            the Corn (Nick Boldt)</b></td>
-        <td valign="top" width="143"><a
-          href="http://bp1.blogger.com/_i21-98vOfTA/SFIULBQhm_I/AAAAAAAAAW8/OXjw8LTv168/s400/Day-of-the-Dead-Ganymede.png"
-          target="blank"><img
-            src="http://bp1.blogger.com/_i21-98vOfTA/SFIULBQhm_I/AAAAAAAAAW8/OXjw8LTv168/s400/Day-of-the-Dead-Ganymede.png"
-            height="200" width="133" border="0"></a><br> <b>Day of the
-            Dead (Nick Boldt)</b></td>
-        <td valign="top" width="143"><a
-          href="http://bp1.blogger.com/_i21-98vOfTA/SFIULBQhnAI/AAAAAAAAAXE/GjseOlNSN60/s400/Death-Proof-Friends-of-Ganymede.png"
-          target="blank"><img
-            src="http://bp1.blogger.com/_i21-98vOfTA/SFIULBQhnAI/AAAAAAAAAXE/GjseOlNSN60/s400/Death-Proof-Friends-of-Ganymede.png"
-            height="200" width="133" border="0"></a><br> <b>Death Proof
-            (Nick Boldt)</b></td>
-        <td valign="top" width="145"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103205"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103205"
-            height="200" width="135" border="0"></a><br> <b>Enchanted
-            (Benjamin Cabe)</b></td>
-        <td valign="top" width="180"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103024"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103024"
-            height="200" width="170" border="0"></a><br> <b>Ganymede
-            Train (Michael Tkacz)</b></td>
-      </tr>
-    </table>
-    <table>
-      <tr height="250">
-        <td valign="top" width="278"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103138"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103138"
-            height="200" width="268" border="0"></a><br> <b>Gene Simmons
-            Never Had Ganymede (Wayne Beaton)</b></td>
-        <td valign="top" width="145"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104993"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104993"
-            height="200" width="135" border="0"></a><br> <b>Harry Potter
-            (Nicolas Bihan)</b></td>
-        <td valign="top" width="268"><a
-          href="http://bp0.blogger.com/_i21-98vOfTA/SD98ggANosI/AAAAAAAAAVk/z01lgDfe5gA/s200/p2_Came_From_Beneath_Equinox.png"
-          target="blank"><img
-            src="http://bp0.blogger.com/_i21-98vOfTA/SD98ggANosI/AAAAAAAAAVk/z01lgDfe5gA/s200/p2_Came_From_Beneath_Equinox.png"
-            height="200" width="258" border="0"></a><br> <b>It Came from
-            Beneath the Sea (Nick Boldt)</b></td>
-        <td valign="top" width="277"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=105349"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=105349"
-            height="200" width="267" border="0"></a><br> <b>Kill Bill,
-            Vol. 1 (Kiril Mitov)</b></td>
-      </tr>
-    </table>
-    <table>
-      <tr height="250">
-        <td valign="top" width="277"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=105326"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=105326"
-            height="200" width="267" border="0"></a><br> <b>Kill Bill,
-            Vol. 2 (Kivil Mitov)</b></td>
-        <td valign="top" width="138"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104070"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104070"
-            height="200" width="128" border="0"></a><br> <b>Kung Fu
-            Panda (Nicolas Bihan)</b></td>
-        <td valign="top" width="140"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103050"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103050"
-            height="200" width="130" border="0"></a><br> <b>Lost In
-            Translation (Benjamin Cabe)</b></td>
-        <td valign="top" width="144"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103199"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103199"
-            height="200" width="134" border="0"></a><br> <b>Mars Attacks
-            (Benjamin Cabe)</b></td>
-        <td valign="top" width="243"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104052"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104052"
-            height="200" width="233" border="0"></a><br> <b>Prepare
-            yourself for Ganymede (Scott Lewis)</b></td>
-      </tr>
-    </table>
-    <table>
-      <tr height="250">
-        <td valign="top" width="277"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=105324"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=105324"
-            height="200" width="267" border="0"></a><br> <b>Sin City
-            (Kiril Mitov)</b></td>
-        <td valign="top" width="145"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103043"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103043"
-            height="200" width="135" border="0"></a><br> <b>Sunshine
-            (Nick Hofstede)</b></td>
-        <td valign="top" width="148"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104165"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104165"
-            height="200" width="138" border="0"></a><br> <b>The Blues
-            Brothers (Wayne Beaton)</b></td>
-        <td valign="top" width="270"><a
-          href="http://bp3.blogger.com/_i21-98vOfTA/SD92SQANorI/AAAAAAAAAVc/tl4Qo4LYiBM/s200/Day_The_Net_Stood_Still.png"
-          target="blank"><img
-            src="http://bp3.blogger.com/_i21-98vOfTA/SD92SQANorI/AAAAAAAAAVc/tl4Qo4LYiBM/s200/Day_The_Net_Stood_Still.png"
-            height="200" width="260" border="0"></a><br> <b>The Day the
-            Earth Stood Still (Nick Boldt)</b></td>
-        <td valign="top" width="151"><a
-          href="http://bp3.blogger.com/_i21-98vOfTA/SD8eTQANopI/AAAAAAAAAVM/3PnY8S9Ho9s/s200/smthing_gany.png"
-          target="blank"><img
-            src="http://bp3.blogger.com/_i21-98vOfTA/SD8eTQANopI/AAAAAAAAAVM/3PnY8S9Ho9s/s200/smthing_gany.png"
-            height="200" width="141" border="0"></a><br> <b>There&#146;s
-            Something About Mary (Nick Boldt)</b></td>
-      </tr>
-    </table>
-
-    <table>
-      <tr height="250">
-        <td valign="top" width="232"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103022"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103022"
-            height="200" width="222" border="0"></a><br> <b>Train about
-            to Leave (Michael Tkacz)</b></td>
-        <td valign="top" width="210"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103021"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103021"
-            height="200" width="200" border="0"></a><br> <b>Train to
-            Catch (Michael Tkacz)</b></td>
-        <td valign="top" width="151"><a
-          href="https://bugs.eclipse.org/bugs/attachment.cgi?id=102974"
-          target="blank"><img
-            src="https://bugs.eclipse.org/bugs/attachment.cgi?id=102974"
-            height="200" width="141" border="0"></a><br> <b>Uncle
-            Eclipse (Benjamin Cabe)</b></td>
-        <td valign="top" width="210"><a
-          href="http://bp3.blogger.com/_i21-98vOfTA/SFITehQhm8I/AAAAAAAAAWk/dKynQpV7vmo/s400/ide-science.png"
-          target="blank"><img
-            src="http://bp3.blogger.com/_i21-98vOfTA/SFITehQhm8I/AAAAAAAAAWk/dKynQpV7vmo/s400/ide-science.png"
-            height="200" width="200" border="0"></a><br> <b>Weird
-            Science (Nick Boldt)</b></td>
-      </tr>
-    </table>
-
-    </p>
-
-    <br>
-    <br>
-
+      <td valign="top" width="167"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=102971"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=102971"
+          height="200" width="157" border="0"
+        ></a><br> <b>2nd: Lord Of The Rings (Nick Hofstede)</b></td>
+      <td valign="top" width="163"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103391"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103391"
+          height="200" width="153" border="0"
+        ></a><br> <b>3rd: Transformers (Benjamin Cabe)</b></td>
+      <td valign="top" width="161"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103019"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103019"
+          height="200" width="151" border="0"
+        ></a><br> <b>4th: Wall E (Prakash G.R.)</b></td>
+      <td valign="top" width="145"><a
+        href="/ganymede/images/GanymedeMoon0Poster.jpg"
+        target="blank"
+      ><img src="/ganymede/images/GanymedeMoon0Poster.jpg"
+          height="200" width="250" border="0"
+        ></a><br> <b>5th: Some things are closer (Michael Tkacz)</b></td>
+    </tr>
+  </table>
+  <table align="top">
+    <tr height="250">
+      <td valign="top" width="147"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104847"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104847"
+          height="200" width="137" border="0"
+        ></a><br> <b>6th (tie): Ice Age (Benjamin Cabe)</b></td>
+      <td valign="top" width="145"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103040"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103040"
+          height="200" width="135" border="0"
+        ></a><br> <b>6th (tie): Ratatouille (Benjamin Cabe)</b></td>
+      <td valign="top" width="151"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=102944"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=102944"
+          height="200" width="141" border="0"
+        ></a><br> <b>8th: Community created... Ganymede! (Benjamin Cabe)</b></td>
+      <td valign="top" width="140"><a
+        href="http://bp1.blogger.com/_i21-98vOfTA/SFIT6BQhm-I/AAAAAAAAAW0/FALIOzx_fMo/s400/children-of-the-code-ganymede.png"
+        target="blank"
+      ><img
+          src="http://bp1.blogger.com/_i21-98vOfTA/SFIT6BQhm-I/AAAAAAAAAW0/FALIOzx_fMo/s400/children-of-the-code-ganymede.png"
+          height="200" width="130" border="0"
+        ></a><br> <b>9th (3-way tie): Children of the Corn<br>II (Nick Boldt)
+      </b></td>
+      <td valign="top" width="260"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=105350"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=105350"
+          height="200" width="250" border="0"
+        ></a><br> <b>9th (3-way tie): Kill Bill, Vol. 3 (Kiril Mitov)</b></td>
+      <td valign="top" width="142"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103044"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103044"
+          height="200" width="132" border="0"
+        ></a><br> <b>9th (3-way tie): 300 (Nick Hofstede)</b></td>
+    </tr>
+  </table>
+  <h2>Honourable Mentions</h2>
+  <table align="top">
+    <tr height="250">
+      <td valign="top" width="148"><a
+        href="http://bp3.blogger.com/_i21-98vOfTA/SD-AtQANotI/AAAAAAAAAVs/YoAOZpvpuE8/s200/Attack_of_the_15_Projects.png"
+        target="blank"
+      ><img
+          src="http://bp3.blogger.com/_i21-98vOfTA/SD-AtQANotI/AAAAAAAAAVs/YoAOZpvpuE8/s200/Attack_of_the_15_Projects.png"
+          height="200" width="138" border="0"
+        ></a><br> <b>Attack of the 50 Foot Woman (Nick Boldt)</b></td>
+      <td valign="top" width="112"><a
+        href="http://bp0.blogger.com/_i21-98vOfTA/SFIT5xQhm9I/AAAAAAAAAWs/BfKXpprXpeA/s400/children-of-the-code.png"
+        target="blank"
+      ><img
+          src="http://bp0.blogger.com/_i21-98vOfTA/SFIT5xQhm9I/AAAAAAAAAWs/BfKXpprXpeA/s400/children-of-the-code.png"
+          height="200" width="102" border="0"
+        ></a><br> <b>Children of the Corn (Nick Boldt)</b></td>
+      <td valign="top" width="143"><a
+        href="http://bp1.blogger.com/_i21-98vOfTA/SFIULBQhm_I/AAAAAAAAAW8/OXjw8LTv168/s400/Day-of-the-Dead-Ganymede.png"
+        target="blank"
+      ><img
+          src="http://bp1.blogger.com/_i21-98vOfTA/SFIULBQhm_I/AAAAAAAAAW8/OXjw8LTv168/s400/Day-of-the-Dead-Ganymede.png"
+          height="200" width="133" border="0"
+        ></a><br> <b>Day of the Dead (Nick Boldt)</b></td>
+      <td valign="top" width="143"><a
+        href="http://bp1.blogger.com/_i21-98vOfTA/SFIULBQhnAI/AAAAAAAAAXE/GjseOlNSN60/s400/Death-Proof-Friends-of-Ganymede.png"
+        target="blank"
+      ><img
+          src="http://bp1.blogger.com/_i21-98vOfTA/SFIULBQhnAI/AAAAAAAAAXE/GjseOlNSN60/s400/Death-Proof-Friends-of-Ganymede.png"
+          height="200" width="133" border="0"
+        ></a><br> <b>Death Proof (Nick Boldt)</b></td>
+      <td valign="top" width="145"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103205"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103205"
+          height="200" width="135" border="0"
+        ></a><br> <b>Enchanted (Benjamin Cabe)</b></td>
+      <td valign="top" width="180"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103024"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103024"
+          height="200" width="170" border="0"
+        ></a><br> <b>Ganymede Train (Michael Tkacz)</b></td>
+    </tr>
+  </table>
+  <table>
+    <tr height="250">
+      <td valign="top" width="278"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103138"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103138"
+          height="200" width="268" border="0"
+        ></a><br> <b>Gene Simmons Never Had Ganymede (Wayne Beaton)</b></td>
+      <td valign="top" width="145"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104993"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104993"
+          height="200" width="135" border="0"
+        ></a><br> <b>Harry Potter (Nicolas Bihan)</b></td>
+      <td valign="top" width="268"><a
+        href="http://bp0.blogger.com/_i21-98vOfTA/SD98ggANosI/AAAAAAAAAVk/z01lgDfe5gA/s200/p2_Came_From_Beneath_Equinox.png"
+        target="blank"
+      ><img
+          src="http://bp0.blogger.com/_i21-98vOfTA/SD98ggANosI/AAAAAAAAAVk/z01lgDfe5gA/s200/p2_Came_From_Beneath_Equinox.png"
+          height="200" width="258" border="0"
+        ></a><br> <b>It Came from Beneath the Sea (Nick Boldt)</b></td>
+      <td valign="top" width="277"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=105349"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=105349"
+          height="200" width="267" border="0"
+        ></a><br> <b>Kill Bill, Vol. 1 (Kiril Mitov)</b></td>
+    </tr>
+  </table>
+  <table>
+    <tr height="250">
+      <td valign="top" width="277"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=105326"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=105326"
+          height="200" width="267" border="0"
+        ></a><br> <b>Kill Bill, Vol. 2 (Kivil Mitov)</b></td>
+      <td valign="top" width="138"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104070"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104070"
+          height="200" width="128" border="0"
+        ></a><br> <b>Kung Fu Panda (Nicolas Bihan)</b></td>
+      <td valign="top" width="140"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103050"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103050"
+          height="200" width="130" border="0"
+        ></a><br> <b>Lost In Translation (Benjamin Cabe)</b></td>
+      <td valign="top" width="144"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103199"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103199"
+          height="200" width="134" border="0"
+        ></a><br> <b>Mars Attacks (Benjamin Cabe)</b></td>
+      <td valign="top" width="243"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104052"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104052"
+          height="200" width="233" border="0"
+        ></a><br> <b>Prepare yourself for Ganymede (Scott Lewis)</b></td>
+    </tr>
+  </table>
+  <table>
+    <tr height="250">
+      <td valign="top" width="277"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=105324"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=105324"
+          height="200" width="267" border="0"
+        ></a><br> <b>Sin City (Kiril Mitov)</b></td>
+      <td valign="top" width="145"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103043"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103043"
+          height="200" width="135" border="0"
+        ></a><br> <b>Sunshine (Nick Hofstede)</b></td>
+      <td valign="top" width="148"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=104165"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=104165"
+          height="200" width="138" border="0"
+        ></a><br> <b>The Blues Brothers (Wayne Beaton)</b></td>
+      <td valign="top" width="270"><a
+        href="http://bp3.blogger.com/_i21-98vOfTA/SD92SQANorI/AAAAAAAAAVc/tl4Qo4LYiBM/s200/Day_The_Net_Stood_Still.png"
+        target="blank"
+      ><img
+          src="http://bp3.blogger.com/_i21-98vOfTA/SD92SQANorI/AAAAAAAAAVc/tl4Qo4LYiBM/s200/Day_The_Net_Stood_Still.png"
+          height="200" width="260" border="0"
+        ></a><br> <b>The Day the Earth Stood Still (Nick Boldt)</b></td>
+      <td valign="top" width="151"><a
+        href="http://bp3.blogger.com/_i21-98vOfTA/SD8eTQANopI/AAAAAAAAAVM/3PnY8S9Ho9s/s200/smthing_gany.png"
+        target="blank"
+      ><img
+          src="http://bp3.blogger.com/_i21-98vOfTA/SD8eTQANopI/AAAAAAAAAVM/3PnY8S9Ho9s/s200/smthing_gany.png"
+          height="200" width="141" border="0"
+        ></a><br> <b>There&#146;s Something About Mary (Nick Boldt)</b></td>
+    </tr>
+  </table>
+  <table>
+    <tr height="250">
+      <td valign="top" width="232"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103022"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103022"
+          height="200" width="222" border="0"
+        ></a><br> <b>Train about to Leave (Michael Tkacz)</b></td>
+      <td valign="top" width="210"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=103021"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=103021"
+          height="200" width="200" border="0"
+        ></a><br> <b>Train to Catch (Michael Tkacz)</b></td>
+      <td valign="top" width="151"><a
+        href="https://bugs.eclipse.org/bugs/attachment.cgi?id=102974"
+        target="blank"
+      ><img src="https://bugs.eclipse.org/bugs/attachment.cgi?id=102974"
+          height="200" width="141" border="0"
+        ></a><br> <b>Uncle Eclipse (Benjamin Cabe)</b></td>
+      <td valign="top" width="210"><a
+        href="http://bp3.blogger.com/_i21-98vOfTA/SFITehQhm8I/AAAAAAAAAWk/dKynQpV7vmo/s400/ide-science.png"
+        target="blank"
+      ><img
+          src="http://bp3.blogger.com/_i21-98vOfTA/SFITehQhm8I/AAAAAAAAAWk/dKynQpV7vmo/s400/ide-science.png"
+          height="200" width="200" border="0"
+        ></a><br> <b>Weird Science (Nick Boldt)</b></td>
+    </tr>
+  </table>
+</div>
+<!-- remove the entire <div> tag to omit the right column!  -->
+<div id="rightcolumn">
+  <div class="sideitem">
+    <h6>Ganymede Around the World</h6>
+    <ul>
+      <li><a href="/ganymede/">Ganymede</a></li>
+      <li><a href="mapList.php">Ganymede Map</a></li>
+    </ul>
   </div>
-
-  <!-- remove the entire <div> tag to omit the right column!  -->
-  <div id="rightcolumn">
-    <div class="sideitem">
-      <h6>Ganymede Around the World</h6>
-      <ul>
-        <li><a href="http://www.eclipse.org/ganymede/">Ganymede</a></li>
-        <li><a href="mapList.php">Ganymede Map</a></li>
-      </ul>
-    </div>
-  </div>
\ No newline at end of file
+</div>
\ No newline at end of file
diff --git a/content/en_projects.php b/content/en_projects.php
index 8b2d64a..1abc099 100644
--- a/content/en_projects.php
+++ b/content/en_projects.php
@@ -1,15 +1,17 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
 ?>
 <div id="ganymedeHeader">
   <div id="headerGraphic">
@@ -24,1276 +26,1276 @@
 </div>
 <div id="widecontent">
   <div id="midcolumnwide">
-    <table cellspacing=0 class="webinars">
+    <table class="table table-striped">
       <tr class="header">
-        <td width="35%">Project Name</td>
-        <td width="12%" align="center">Version</td>
-        <td width="10%" align="center">Project Summary</td>
-        <td width="12%" align="center">Download</td>
+        <th width="35%">Project Name</th>
+        <th width="12%">Version</th>
+        <th width="10%">Project Summary</th>
+        <th width="12%">Download</th>
       </tr>
       <tr class="tableRow">
         <td><b></b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.java-ee-config"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.java-ee-config"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/java-ee-config/download.php">Download</a>
+        <td><a
+          href="/java-ee-config/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b></b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmt.umlx"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.gmt.umlx"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/gmt/downloads/?project=umlx">Download</a>
+        <td><a
+          href="/modeling/gmt/downloads/?project=umlx">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b></b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.sdo"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.sdo"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="/modeling/emf/downloads/?project=sdo">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b></b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.cdt.tcf"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.cdt.tcf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"></td>
+        <td></td>
       </tr>
       <tr class="tableRow">
         <td><b></b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.emf"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.emf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="/modeling/emf/downloads/?project=emf">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Acceleo</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t.acceleo"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.m2t.acceleo"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/acceleo/download">Download</a></td>
+        <td><a
+          href="/acceleo/download">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Accessibility Tools Framework</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.actf"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.actf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/actf/downloads/index.php">Download</a>
+        <td><a
+          href="/actf/downloads/index.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Agent Modeling Platform</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.amp"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.amp"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="http://eclipse.org/amp/installing/">Download</a></td>
+        <td><a href="/amp/installing/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Amalgamation</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.amalgam"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.amalgam"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/downloads/packages/">Download</a>
+        <td><a
+          href="/downloads/packages/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>ATL</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mmt.atl"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mmt.atl"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://eclipse.org/mmt/downloads/?project=atl">Download</a>
+        <td><a
+          href="/mmt/downloads/?project=atl">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>BPEL Designer</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.bpel"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=soa.bpel"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="https://hudson.eclipse.org/hudson/job/bpel-0.5/lastSuccessfulBuild/artifact/site/target/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>BPMN modeler</b></td>
-        <td align="center">1.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.bpmnmodeler"><img
+        <td>1.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=soa.bpmnmodeler"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"></td>
+        <td></td>
       </tr>
       <tr class="tableRow">
         <td><b>BPMN2 Modeler Project</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.bpmn2-modeler"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=soa.bpmn2-modeler"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/bpmn2-modeler/downloads.php">Download</a>
+        <td><a
+          href="/bpmn2-modeler/downloads.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Buckminster Component Assembly</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.buckminster"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.buckminster"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/buckminster/downloads.html">Download</a>
+        <td><a
+          href="/buckminster/downloads.html">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Business Intelligence and Reporting Tools (BIRT)</b></td>
-        <td align="center">2.3.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=birt"><img
+        <td>2.3.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=birt"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/birt/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>C/C++ Development Tooling (CDT)</b></td>
-        <td align="center">5.0.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.cdt"><img
+        <td>5.0.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.cdt"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/cdt/downloads.php">Download</a></td>
+        <td><a
+          href="/cdt/downloads.php">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>CDO Model Repository</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.cdo"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.cdo"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/cdo/downloads">Download</a></td>
+        <td><a
+          href="/cdo/downloads">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Code Recommenders</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.recommenders"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.recommenders"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://eclipse.org/recommenders/download/">Download</a>
+        <td><a
+          href="/recommenders/download/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Dali Java Persistence Tools</b></td>
-        <td align="center">2.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.dali"><img
+        <td>2.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.dali"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/dali/downloads.html">Download</a>
+        <td><a
+          href="/dali/downloads.html">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Data Tools Platform</b></td>
-        <td align="center">1.6 (\"Ganymede\")</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=datatools"><img
+        <td>1.6 (\"Ganymede\")</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=datatools"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/datatools/downloads.php">Download</a>
+        <td><a
+          href="/datatools/downloads.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Device Debugging</b></td>
-        <td align="center">1.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=dsdp.dd"><img
+        <td>1.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=dsdp.dd"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/dsdp/dd/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Dynamic Languages Toolkit</b></td>
-        <td align="center">0.95</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.dltk"><img
+        <td>0.95</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.dltk"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/technology/dltk/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Communication Framework</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.ecf"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.ecf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/ecf/downloads.php">Download</a></td>
+        <td><a
+          href="/ecf/downloads.php">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Communication Framework Project</b></td>
-        <td align="center">2.0.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.ecf"><img
+        <td>2.0.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.ecf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/ecf/downloads.php">Download</a></td>
+        <td><a
+          href="/ecf/downloads.php">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Generation Factories (EGF)</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.egf"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.egf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/downloads/download.php?file=/egf/tool/egf_1.0.0RC2/org.eclipse.egf_1.0.0.v20120528-1601.zip">Download</a>
+        <td><a
+          href="/downloads/download.php?file=/egf/tool/egf_1.0.0RC2/org.eclipse.egf_1.0.0.v20120528-1601.zip">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Git Team Provider</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.egit"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.egit"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="http://eclipse.org/egit/download">Download</a>
+        <td><a href="/egit/download">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Gyrex Project</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.gyrex"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.gyrex"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/gyrex/download/">Download</a></td>
+        <td><a
+          href="/gyrex/download/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Model Framework Technology (EMFT)</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emft"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emft/downloads/">Download</a>
+        <td><a
+          href="/modeling/emft/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Modeling Framework (EMF)</b></td>
-        <td align="center">2.4.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf"><img
+        <td>2.4.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emf/downloads/?project=emf">Download</a>
+        <td><a
+          href="/modeling/emf/downloads/?project=emf">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Packaging Project</b></td>
-        <td align="center">1.0.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.packaging"><img
+        <td>1.0.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.packaging"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/downloads/packages/">Download</a></td>
+        <td><a href="/downloads/packages/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Platform</b></td>
-        <td align="center">3.4</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.platform"><img
+        <td>3.4</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=eclipse.platform"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/eclipse/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Project</b></td>
-        <td align="center">3.4</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse"><img
+        <td>3.4</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=eclipse"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/eclipse/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Runtime Packaging Project</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.packaging.rtp"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.packaging.rtp"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="http://eclipse.org/rtp/downloads/">Download</a>
+        <td><a href="/rtp/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Scout</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.scout"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.scout"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/scout/downloads/">Download</a></td>
+        <td><a
+          href="/scout/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Eclipse Web Tools Platform Project</b></td>
-        <td align="center">WTP 3.0.0 (Ganymede)</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools"><img
+        <td>WTP 3.0.0 (Ganymede)</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EclipseLink Project</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.eclipselink"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.eclipselink"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/eclipselink/downloads/index.php">Download</a>
+        <td><a
+          href="/eclipselink/downloads/index.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Ecore Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.ecoretools"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emft.ecoretools"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emft/downloads/?project=ecoretools">Download</a>
+        <td><a
+          href="/modeling/emft/downloads/?project=ecoretools">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Compare</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.compare"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emft.compare"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emft/downloads/?project=compare">Download</a>
+        <td><a
+          href="/modeling/emft/downloads/?project=compare">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Compare</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.compare"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.compare"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emf/downloads/?project=compare">Download</a>
+        <td><a
+          href="/modeling/emf/downloads/?project=compare">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Diff/Merge</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.diffmerge"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.diffmerge"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://wiki.eclipse.org/EMF_DiffMerge/Download">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Facet</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.emf-facet"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emft.emf-facet"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emft/facet/downloads/">Download</a>
+        <td><a
+          href="/modeling/emft/facet/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Query</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.query"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.query"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emf/downloads/?project=query">Download</a>
+        <td><a
+          href="/modeling/emf/downloads/?project=query">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Query2</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.query2"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.query2"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/modeling/emf/query2/updates/1.0/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Teneo Model Relational Mapping</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.teneo"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.teneo"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emf/downloads/?project=teneo">Download</a>
+        <td><a
+          href="/modeling/emf/downloads/?project=teneo">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Transaction</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.transaction"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.transaction"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emf/downloads/?project=transaction">Download</a>
+        <td><a
+          href="/modeling/emf/downloads/?project=transaction">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>EMF Validation</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.validation"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.validation"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emf/downloads/?project=validation">Download</a>
+        <td><a
+          href="/modeling/emf/downloads/?project=validation">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Enterprise Tools for the OSGi Service Platform</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.libra"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.libra"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/libra/download.php">Download</a>
+        <td><a
+          href="/libra/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Equinox</b></td>
-        <td align="center">3.4</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.equinox"><img
+        <td>3.4</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.equinox"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/equinox/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Equinox p2</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.equinox.p2"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.equinox.p2"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/equinox/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Extended Editing Framework (EEF)</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.eef"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emft.eef"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emft/downloads/?project=eef">Download</a>
+        <td><a
+          href="/modeling/emft/downloads/?project=eef">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Fortran Development Tools (Photran)</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.ptp.photran"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.ptp.photran"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"></td>
+        <td></td>
       </tr>
       <tr class="tableRow">
         <td><b>Graphical Editing Framework (GEF)</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.gef"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.gef"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/gef/downloads.php">Download</a></td>
+        <td><a
+          href="/gef/downloads.php">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Graphical Modeling Framework</b></td>
-        <td align="center">2.1.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmf"><img
+        <td>2.1.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.gmf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/gmf/downloads/">Download</a>
+        <td><a
+          href="/modeling/gmf/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Graphical Modeling Framework (GMF) Notation</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmp.gmf-notation"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.gmp.gmf-notation"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/gmp/downloads/?project=gmf-notation">Download</a>
+        <td><a
+          href="/modeling/gmp/downloads/?project=gmf-notation">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Graphical Modeling Framework (GMF) Runtime</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmp.gmf-runtime"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.gmp.gmf-runtime"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/gmp/downloads/?project=gmf-runtime">Download</a>
+        <td><a
+          href="/modeling/gmp/downloads/?project=gmf-runtime">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Graphical Modeling Framework (GMF) Tooling</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmp.gmf-tooling"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.gmp.gmf-tooling"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/gmp/downloads/?project=gmf-tooling">Download</a>
+        <td><a
+          href="/modeling/gmp/downloads/?project=gmf-tooling">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Graphiti</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmp.graphiti"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.gmp.graphiti"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/graphiti/download.php">Download</a>
+        <td><a
+          href="/graphiti/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Hudson</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.hudson"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.hudson"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"></td>
+        <td></td>
       </tr>
       <tr class="tableRow">
         <td><b>Intent</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.docs.intent"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.docs.intent"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/intent/download.php">Download</a>
+        <td><a
+          href="/intent/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Java development tools debug</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.jdt.debug"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=eclipse.jdt.debug"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/eclipse/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Java Emitter Templates (JET2)</b></td>
-        <td align="center">M2T JET 0.9.0 (Ganymede)</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t.jet"><img
+        <td>M2T JET 0.9.0 (Ganymede)</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.m2t.jet"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/m2t/downloads/?project=jet">Download</a>
+        <td><a
+          href="/modeling/m2t/downloads/?project=jet">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Java implementation of Git</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.jgit"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.jgit"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/jgit/download/">Download</a></td>
+        <td><a
+          href="/jgit/download/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Java Workflow Tooling</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.jwt"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=soa.jwt"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://wiki.eclipse.org/JWT_Downloads#Current_Releases">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>JavaScript Development Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.jsdt"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.jsdt"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>JavaServer Faces</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.jsf"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.jsf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>JDT - Java development tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.jdt"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=eclipse.jdt"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/eclipse/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Jetty - Servlet Engine and Http Server</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.jetty"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.jetty"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/jetty/downloads.php">Download</a>
+        <td><a
+          href="/jetty/downloads.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Jubula Functional Testing Tool</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.jubula"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.jubula"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/jubula/download.php">Download</a>
+        <td><a
+          href="/jubula/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Koneki</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.koneki"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.koneki"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/koneki/download.php">Download</a>
+        <td><a
+          href="/koneki/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Linux Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.linuxtools"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.linuxtools"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/linuxtools/downloads.php">Download</a>
+        <td><a
+          href="/linuxtools/downloads.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Marketplace Client</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.packaging.mpc"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.packaging.mpc"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"></td>
+        <td></td>
       </tr>
       <tr class="tableRow">
         <td><b>Maven Integration</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.m2e"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.m2e"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="http://eclipse.org/m2e/download/">Download</a>
+        <td><a href="/m2e/download/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Maven Integration for Web Tools Platform</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.m2e.m2e-wtp"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.m2e.m2e-wtp"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="m2e-wtp/download/">Download</a></td>
+        <td><a href="m2e-wtp/download/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>MDT UML2</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.uml2"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mdt.uml2"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="/modeling/mdt/downloads/?project=uml2">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>MDT UML2 Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.uml2-tools"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mdt.uml2-tools"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools">Download</a>
+        <td><a
+          href="/modeling/mdt/downloads/?project=uml2tools">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>MDT XSD (XML Schema Definition)</b></td>
-        <td align="center">2.4.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.xsd"><img
+        <td>2.4.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mdt.xsd"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/mdt/downloads/?project=xsd">Download</a>
+        <td><a
+          href="/modeling/mdt/downloads/?project=xsd">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Memory Analyzer</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.mat"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.mat"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mat/downloads.php">Download</a></td>
+        <td><a href="/mat/downloads.php">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Memory Analyzer</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.mat"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.mat"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/mat/downloads.php">Download</a></td>
+        <td><a
+          href="/mat/downloads.php">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mint</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.mint"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emft.mint"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emft/downloads/?project=mint">Download</a>
+        <td><a
+          href="/modeling/emft/downloads/?project=mint">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Mobile Tools for Java</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.sequoyah.mtj"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.sequoyah.mtj"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/dsdp/mtj/downloads/index.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Model Development Tools (MDT)</b></td>
-        <td align="center">Ganymede</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt"><img
+        <td>Ganymede</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mdt"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/modeling/mdt/downloads/">Download</a>
+        <td><a href="/modeling/mdt/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Model Discovery</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmt.modisco"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.gmt.modisco"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/gmt/modisco/download/">Download</a>
+        <td><a
+          href="/gmt/modisco/download/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Model Focusing Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.context.mft"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.context.mft"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"></td>
+        <td></td>
       </tr>
       <tr class="tableRow">
         <td><b>Model To Text (M2T)</b></td>
-        <td align="center">0.9.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t"><img
+        <td>0.9.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.m2t"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/m2t/downloads/">Download</a>
+        <td><a
+          href="/modeling/m2t/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Model-to-Model Transformation (MMT)</b></td>
-        <td align="center">Ganymede</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mmt"><img
+        <td>Ganymede</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mmt"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mmt/downloads/">Download</a></td>
+        <td><a href="/mmt/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Modeling Team Framework</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.mtf"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emft.mtf"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"></td>
+        <td></td>
       </tr>
       <tr class="tableRow">
         <td><b>Modeling Workflow Engine</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.mwe"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.mwe"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emft/downloads/?project=mwe">Download</a>
+        <td><a
+          href="/modeling/emft/downloads/?project=mwe">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>modeling.emft.mwe</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft.mwe"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emft.mwe"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emft/downloads/?project=mwe">Download</a>
+        <td><a
+          href="/modeling/emft/downloads/?project=mwe">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>MoDisco</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.modisco"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mdt.modisco"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/MoDisco/downloads/">Download</a>
+        <td><a
+          href="/MoDisco/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn</b></td>
-        <td align="center">3.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.mylyn"><img
+        <td>3.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.mylyn"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/mylyn/downloads">Download</a></td>
+        <td><a
+          href="/mylyn/downloads">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn</b></td>
-        <td align="center">3.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn"><img
+        <td>3.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/mylyn/downloads">Download</a></td>
+        <td><a
+          href="/mylyn/downloads">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn Builds</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.builds"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.builds"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+        <td><a href="/mylyn/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn Commons</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.commons"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.commons"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+        <td><a href="/mylyn/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn Context</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.context"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.context"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+        <td><a href="/mylyn/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn Docs</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.docs"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.docs"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+        <td><a href="/mylyn/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn Reviews</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.reviews"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.reviews"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+        <td><a href="/mylyn/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn Tasks</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.tasks"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.tasks"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+        <td><a href="/mylyn/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Mylyn Versions</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=mylyn.versions"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=mylyn.versions"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/mylyn/downloads/">Download</a></td>
+        <td><a href="/mylyn/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Net4j Signalling Platform</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.net4j"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.emf.net4j"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/emf/downloads/index.php?project=net4j">Download</a>
+        <td><a
+          href="/modeling/emf/downloads/index.php?project=net4j">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Object Teams</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.objectteams"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.objectteams"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/objectteams/download.php">Download</a>
+        <td><a
+          href="/objectteams/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>OCL (Object Constraint Language)</b></td>
-        <td align="center">1.2 (Ganymede)</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.ocl"><img
+        <td>1.2 (Ganymede)</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mdt.ocl"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl">Download</a>
+        <td><a
+          href="/modeling/mdt/downloads/?project=ocl">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Orion</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.orion"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=eclipse.orion"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="http://download.eclipse.org/orion/">Download</a></td>
+        <td><a href="http://download.eclipse.org/orion/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Papyrus</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.papyrus"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mdt.papyrus"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/mdt/papyrus/downloads/">Download</a>
+        <td><a
+          href="/modeling/mdt/papyrus/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Parallel Tools Platform (PTP)</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.ptp"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.ptp"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/ptp/downloads.php">Download</a></td>
+        <td><a href="/ptp/downloads.php">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>PDE - Plugin Development Environment</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.pde"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=eclipse.pde"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/eclipse/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>PHP Development Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.pdt"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.pdt"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/tools/pdt/downloads/index.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Platform Ant</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=eclipse.platform.ant"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=eclipse.platform.ant"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/eclipse/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>QVT Operational</b></td>
-        <td align="center">1.0.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mmt.qvt-oml"><img
+        <td>1.0.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mmt.qvt-oml"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/mmt/downloads/index.php?project=qvto&showAll=0&showMax=5">Download</a>
+        <td><a
+          href="/mmt/downloads/index.php?project=qvto&showAll=0&showMax=5">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Remote Application Platform</b></td>
-        <td align="center">1.1</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.rap"><img
+        <td>1.1</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.rap"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/rap/downloads/">Download</a></td>
+        <td><a
+          href="/rap/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Riena Project</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.riena"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.riena"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://wiki.eclipse.org/Riena_Getting_started">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Sapphire</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.sapphire"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.sapphire"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/sapphire/downloads/index.php">Download</a>
+        <td><a
+          href="/sapphire/downloads/index.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>SCA Tools</b></td>
-        <td align="center">1.0.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.sca"><img
+        <td>1.0.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=soa.sca"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="http://wiki.eclipse.org/SCA#Install">Download</a></td>
+        <td><a href="http://wiki.eclipse.org/SCA#Install">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Sequoyah</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.sequoyah"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.sequoyah"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/sequoyah/downloads/">Download</a></td>
+        <td><a href="/sequoyah/downloads/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Server Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.servertools"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.servertools"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Sketch</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.sketch"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.sketch"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/sketch/download.php">Download</a>
+        <td><a
+          href="/sketch/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>SOA Tools</b></td>
-        <td align="center">1.0.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=stp"><img
+        <td>1.0.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=stp"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/stp/download.php">Download</a></td>
+        <td><a
+          href="/stp/download.php">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Sphinx</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt.sphinx"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.mdt.sphinx"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/sphinx/download.php">Download</a>
+        <td><a
+          href="/sphinx/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Stardust</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.stardust"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=soa.stardust"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="http://git.eclipse.org/c/q=stardust">Download</a></td>
+        <td><a href="http://git.eclipse.org/c/q=stardust">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Subversive - SVN Team Provider</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.subversive"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=technology.subversive"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/subversive/downloads.php">Download</a>
+        <td><a
+          href="/subversive/downloads.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Swordfish</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=soa.swordfish"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=soa.swordfish"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/swordfish/downloads">Download</a>
+        <td><a
+          href="/swordfish/downloads">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Target Management</b></td>
-        <td align="center">3.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.tm"><img
+        <td>3.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.tm"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/tm/downloads/index.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b> Test and Performance Tools Platform Project</b></td>
-        <td align="center">4.5.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tptp"><img
+        <td>4.5.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tptp"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/tptp/home/downloads/downloads.php">Download</a>
+        <td><a
+          href="/tptp/home/downloads/downloads.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>VE - Visual Editor</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.ve"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.ve"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/tools/ve/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Virgo</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=rt.virgo"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=rt.virgo"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/virgo/download/">Download</a></td>
+        <td><a
+          href="/virgo/download/">Download</a></td>
       </tr>
       <tr class="tableRow">
         <td><b>Web Services Tools</b></td>
-        <td align="center">WTP 3.0</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.webservices"><img
+        <td>WTP 3.0</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.webservices"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Webtools Releng</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.releng"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.releng"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>WindowBuilder</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.windowbuilder"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.windowbuilder"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="/windowbuilder/download.php">Download</a>
+        <td><a href="/windowbuilder/download.php">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>WTP Common Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.common"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.common"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>WTP EJB Tools</b></td>
-        <td align="center">WTP 3.0 (Ganymede)</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.ejbtools"><img
+        <td>WTP 3.0 (Ganymede)</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.ejbtools"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>WTP Java EE Tools</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.jeetools"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.jeetools"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>WTP Source Editing</b></td>
-        <td align="center">3.0 (Ganymede)</td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools.sourceediting"><img
+        <td>3.0 (Ganymede)</td>
+        <td><a
+          href="/projects/project_summary.php?projectid=webtools.sourceediting"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
+        <td><a
           href="http://download.eclipse.org/webtools/downloads/">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Xpand</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t.xpand"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.m2t.xpand"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/modeling/m2t/downloads/?showAll=0&project=xpand">Download</a>
+        <td><a
+          href="/modeling/m2t/downloads/?showAll=0&project=xpand">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Xtend</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=tools.xtend"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=tools.xtend"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a href="http://www.eclipse.org/xtend">Download</a>
+        <td><a href="/xtend">Download</a>
         </td>
       </tr>
       <tr class="tableRow">
         <td><b>Xtext</b></td>
-        <td align="center"></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.tmf.xtext"><img
+        <td></td>
+        <td><a
+          href="/projects/project_summary.php?projectid=modeling.tmf.xtext"><img
             src="images/homepage.gif"></a></td>
-        <td align="center"><a
-          href="http://www.eclipse.org/Xtext/download/">Download</a></td>
+        <td><a
+          href="/Xtext/download/">Download</a></td>
       </tr>
     </table>
   </div>
diff --git a/friends.php b/friends.php
index 4e4ec21..6fc07c7 100644
--- a/friends.php
+++ b/friends.php
@@ -1,36 +1,33 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
 
+include ($App->getProjectCommon());
 
-// Begin: page-specific settings. Change these.
-$pageTitle 		= "Friends of Ganymede";
-$pageKeywords	= "Ganymede marketing, friends of Ganymede";
-$pageAuthor		= "Nathan Gervais";
+$pageTitle = "Friends of Ganymede";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("Ganymede marketing, friends of Ganymede");
+$Theme->setPageAuthor("Nathan Gervais");
 
-// Place your html content in a file called content/en_pagename.php
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/index.php b/index.php
index 3201030..511b6cf 100644
--- a/index.php
+++ b/index.php
@@ -1,35 +1,32 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
+include ($App->getProjectCommon());
 
+$pageTitle = "Ganymede Release";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse ganymede, ganymede, ganymede release train");
+$Theme->setPageAuthor("Eclipse Foundation, Inc.");
 
-// Begin: page-specific settings. Change these.
-$pageTitle 		= "Ganymede Release";
-$pageKeywords	= "eclipse ganymede, ganymede, ganymede release train";
-$pageAuthor		= "Eclipse Foundation, Inc.";
-
-// Place your html content in a file called content/en_pagename.php
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/layout.css b/layout.css
deleted file mode 100644
index 4b6bda3..0000000
--- a/layout.css
+++ /dev/null
@@ -1,389 +0,0 @@
-.item_headline {
-	padding: 3px;
-}
-
-.visible .item_contents {
-	display: block;
-}
-
-.invisible .item_contents {
-	display: none;
-}
-
-.visible .item_menu {
-	display: block;
-}
-
-.invisible .item_menu {
-	display: none;
-}
-
-.visible a.norgie {
-	background: url('/ganymede/images/minus.gif') no-repeat;
-	padding-right: 2px;
-}
-
-.invisible a.norgie {
-	background: url('/ganymede/images/plus.gif') no-repeat;
-	padding-right: 2px;
-}
-
-.item_menu {
-	position: relative;
-	left: 5px;;
-	margin: 10px;
-	margin-left: 15px;
-	padding-left: 5px;
-	padding-bottom: 5px;
-	font-weight: bold;
-}
-
-.item_contents {
-	margin: 0px;;
-	padding: 5px;
-}
-
-a.norgie {
-	float: left;
-	clear: all;;
-	height: 20px;
-	width: 10px;
-	margin-top: 5px;
-	margin-bottom: -5px;
-}
-
-body {
-	color: #000;
-}
-
-#midcolumn {
-	padding-top: 20px;
-	padding-left: 20px !important;
-}
-
-.plugins {
-	margin-bottom: 10px;
-	margin-top: 0px;
-	width: 100%;
-	float: left;
-	max-height: 300px;
-	height: 300px;
-	overflow-y: auto;
-	overflow-x: hidden;
-}
-
-.resources {
-	margin-bottom: 10px;
-	margin-top: 0px;
-	width: 100%;
-	float: left;
-	max-height: 300px;
-	height: 300px;
-	overflow-y: auto;
-	overflow-x: hidden;
-}
-
-.resourcesTable {
-	width: 100%;
-	border-bottom: 1px solid #49457C;
-}
-
-.resourcesHeaderDiv {
-	width: 100%;
-	float: left;
-}
-
-.resourcesHeader {
-	border-top: 2px solid #49457C;
-	background-image: url('images/bar.jpg');
-	font-size: 110%;
-	font-weight: bold;
-}
-
-.resourcesData td {
-	border-top: 1px solid darkgray;
-	vertical-align: top;
-}
-
-.paddingLeft {
-	padding-left: 7px;
-}
-
-.headerBar {
-	height:120px;
-	padding: 0px;
-	width: 100%;
-	border-top: 3px solid #FF6700;
-
-}
-
-.coming {
-	background:#0B328B url(images/europaBanner.jpg) no-repeat scroll top left;
-}
-
-.release {
-	background:#0B328B url(images/europaBannerHere.jpg) no-repeat scroll top left;
-}
-
-.headerBar td {
-	//background-image: url('images/bar.jpg');
-	font-size: 170%;
-	color:#FFFFFF;
-	vertical-align:top;
-	padding:10px;
-	font-weight: bold;
-}
-
-.headerBar span {
-	font-size: 80%;
-	font-weight: normal;
-}
-
-.projectTable {
-	width: 100%;
-	border-bottom: 1px solid #49457C;
-}
-
-#epicPlugins .projectTable {
-	width: 100%;
-	border-bottom:0px;
-}
-
-#epicPlugins .plugins .projectTable {
-	width: 100%;
-	border-bottom: 1px solid #49457C;
-}
-
-
-.memberTable {
-	width: 100%;
-	border-bottom: 1px solid #49457C;
-}
-
-.tableHeader {
-	background-image: url('images/bar.jpg');
-	font-weight: bold;
-	border-top: 2px solid #49457C;
-	border-bottom: 1px solid #49457C;
-	font-size: 100%;
-}
-
-.tableHeaderTitle {
-	font-weight: bold;
-	font-size: 125%;
-	padding-top: 10px;
-}
-
-.tableRow td{
-	border-bottom: 1px solid #CCC;
-	padding-top:5px;
-}
-
-.members {
-	float: left;
-	width: 100%;
-}
-
-.box {
-	width: 35%;
-	float: right;
-	clear: none;
-}
-
-.box ol {
-	padding-left: 0px;
-	margin: 0;
-	margin-top: 10px;
-}
-
-.box ol li {
-	list-style-type: none;
-	padding-bottom: 10px;
-}
-
-.categoryLeft .box ol li,.categoryRight .box ol li {
-	padding: 0px;
-	padding-bottom: 10px;
-}
-
-.box ol li ul li {
-	background: none;
-}
-
-.boxHeader {
-	background-image: url(images/bar.jpg);
-	background-position: top left;
-	background-repeat: repeat-x;
-	border-top: 1px solid #AAA;
-	border-bottom: 1px solid #AAA;
-	padding: 5px;
-	color: #000;
-	font-weight: bold;
-	font-size: 110%;
-}
-
-.boxHeader a {
-	color: #4F4F4F;
-}
-
-.boxBody {
-	border: 1px solid #CCC;
-	border-top: 0px;
-	min-height: 30px;
-	padding-left: 5px;
-	padding-top: 5px;
-	padding-bottom: 5px;
-	margin-bottom: 3px;
-}
-
-.newsItems {
-	padding-top: 10px;
-	padding-left: 0px;
-}
-
-.newsItem {
-	display: inline;
-}
-
-.newsTitle {
-	font-weight: bold;
-	color: #653265;
-}
-
-.newsDate {
-	padding-left: 20px;
-	font-size: x-small;
-	color: #6F6F6F;
-}
-
-.newsBody {
-	padding-left: 25px;
-}
-
-.newsItems li {
-	list-style-image:
-		url(/eclipse.org-common/themes/Phoenix/images/arrow.gif);
-	list-style-position: inside;
-	padding-left: 5px;
-	padding-bottom: 15px;
-}
-
-.newsMore {
-	text-align: right;
-	font-size: 70%;
-	padding-right: 10px;
-	clear: all;
-}
-
-.newsQuote {
-	font-size: 90%;
-	color: #595791;
-	margin: 7px;
-	padding: 1px;
-	background: #F5F5FF;
-	border: 1px solid #CCCCCC;
-}
-
-.europaLink {
-	font-size:130%;
-	font-weight:bold;
-	
-}
-
-#dateTab {
-	margin:-10px;
-	padding:0px;	
-}
-
-#countdown {
-	padding:4px;
-	font-size:24px;
-	font-weight:bold;
-	text-align:center;
-}
-
-.bottomBorder td {
-	border-bottom:1px solid black;	
-}
-
-.homeitem, .homeitem3col {
-	border:1px solid #CCCCCC;	
-}
-
-.homeitem h3, .homeitem3col h3 {
-	background:transparent url(/eclipse.org-common/themes/Phoenix/images/bar.jpg) repeat scroll;
-	background-position:0 -20px;
-	color:#333366;
-	font-size:110%;
-	font-weight:bold;
-	border-bottom:1px solid #DDDDDD;
-}
-
-#tabSelection {
-	width:100%;
-	height:22px;
-	display:block;
-}
-
-#tabSelection ul {
-}
-
-#tabSelection ul li {
-	list-style: none;
-	display:inline;
-	margin:0;
-	padding:0;
-
-}
-#tabSelection ul li a {
-	background:transparent url("images/formatTab.png") no-repeat top left;	
-	display:block;	
-	text-decoration:none;
-	height:22px;
-	width:204px;
-	float:left;
-	text-align: center;
-	padding-top:3px;
-	margin-bottom:-5px;
-	cursor: pointer;
-}
-
-#tabSelection ul li a.active {
-	text-decoration:underline;	
-} 
-
-
-#tabData {
-	border:1px solid #CCC;
-	width:100%;	
-
-}
-
-#tabData .webinars {
-	width:100%;
-	padding:0;
-	margin:0;	
-}
-
-#tabData .webinars tr.header td {
-	background:transparent url(/eclipse.org-common/themes/Phoenix/images/bar.jpg) repeat scroll;
-	background-position:0 -40px;
-	border-bottom:1px solid #DDD;
-	font-weight:bold;
-}
-
-#tabData .webinars tr td {
-	font-size:90%;
-	padding-left:5px;
-	height:20px;
-}
-
-#tabData .webinars tr td.hidden {
-	height:0px;	
-	border-bottom:1px solid #DDD;
-}
-
-.inline	{
-	display:inline;
-	margin:10px;
-}
diff --git a/learn.php b/learn.php
index ff615ad..1279fcf 100644
--- a/learn.php
+++ b/learn.php
@@ -1,36 +1,33 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
 
+include ($App->getProjectCommon());
 
-// Begin: page-specific settings. Change these.
-$pageTitle 		= "Learn more about Ganymede";
-$pageKeywords	= "eclipse ganymede, ganymede, ganymede release train";
-$pageAuthor		= "Eclipse Foundation, Inc.";
+$pageTitle = "Learn more about Ganymede";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse ganymede, ganymede, ganymede release train");
+$Theme->setPageAuthor("Eclipse Foundation, Inc.");
 
-// Place your html content in a file called content/en_pagename.php
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/map.php b/map.php
deleted file mode 100644
index ec30655..0000000
--- a/map.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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'
-
-
-// Begin: page-specific settings. Change these.
-$pageTitle 		= "Ganymede Around the World";
-$pageKeywords	= "eclipse ganymede, ganymede, ganymede around the world";
-$pageAuthor		= "Nathan Gervais";
-
-// Place your html content in a file called content/en_pagename.php
-ob_start();
-include("content/en_" . $App->getScriptName());
-$html = ob_get_clean();
-
-# Generate the web page
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
diff --git a/mapList.php b/mapList.php
index 0f4d20f..db39790 100644
--- a/mapList.php
+++ b/mapList.php
@@ -1,37 +1,35 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
 
+include ($App->getProjectCommon());
 
-// Begin: page-specific settings. Change these.
-$pageTitle 		= "Ganymede Around the World";
-$pageKeywords	= "eclipse ganymede, ganymede, ganymede around the world";
-$pageAuthor		= "Nathan Gervais";
+$pageTitle = "Ganymede Around the World";
 header("Cache-control: no-cache");
 
-// Place your html content in a file called content/en_pagename.php
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse ganymede, ganymede, ganymede around the world");
+$Theme->setPageAuthor("Nathan Gervais");
+
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/postercontest.php b/postercontest.php
index dcd9547..25a13c0 100644
--- a/postercontest.php
+++ b/postercontest.php
@@ -1,36 +1,33 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
 
+include ($App->getProjectCommon());
 
-// Begin: page-specific settings. Change these.
-$pageTitle 		= "Ganymede Poster Contest";
-$pageKeywords	= "ganymede, poster, contest, movie";
-$pageAuthor		= "Lynn Gayowski";
+$pageTitle = "Ganymede Poster Contest";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("ganymede, poster, contest, movie");
+$Theme->setPageAuthor("Lynn Gayowski");
 
-// Place your html content in a file called content/en_pagename.php
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/projects.php b/projects.php
index b694bc6..43e542f 100644
--- a/projects.php
+++ b/projects.php
@@ -1,36 +1,33 @@
 <?php
-/*******************************************************************************
- * Copyright(c) 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://eclipse.org/legal/epl-v10.html
+/**
+ * Copyright (c) 2015, 2018 Eclipse Foundation.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
  *
  * Contributors:
- *    Nathan Gervais (Eclipse Foundation) - Initial implementation
- *    Eric Poirier (Eclipse Foundation)
- *******************************************************************************/
-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");
+ *   Nathan Gervais (Eclipse Foundation) - Initial implementation
+ *   Eric Poirier (Eclipse Foundation)
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.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'
+$Theme = $App->getThemeClass();
 
+include ($App->getProjectCommon());
 
-// Begin: page-specific settings. Change these.
-$pageTitle 		= "Eclipse Ganymede Release Projects";
-$pageKeywords	= "eclipse ganymede, ganymede, ganymede release train";
-$pageAuthor		= "Nathan Gervais";
+$pageTitle = "Eclipse Ganymede Release Projects";
+$Theme->setPageTitle($pageTitle);
+$Theme->setPageKeywords("eclipse ganymede, ganymede, ganymede release train");
+$Theme->setPageAuthor("Nathan Gervais");
 
-// Place your html content in a file called content/en_pagename.php
 ob_start();
-include("content/en_" . $App->getScriptName());
+include ("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 
-# Generate the web page
 $App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/style.css" rel="stylesheet"/>');
-$App->AddExtraHtmlHeader('<link type="text/css" href="/ganymede/layout.css" rel="stylesheet"/>');
-$App->generatePage(NULL, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
\ No newline at end of file
+$Theme->setHtml($html);
+$Theme->generatePage();
\ No newline at end of file
diff --git a/style.css b/style.css
index ba12ed5..7d578ec 100644
--- a/style.css
+++ b/style.css
@@ -1,161 +1,169 @@
 table.list tr td {
-	vertical-align: top;
-	padding-top:2px;
-	padding-bottom:5px;
-	border-bottom:1px solid #bbb;
-	padding-left:5px;	
-}
-
-table.list {
+  vertical-align: top;
+  padding-top: 2px;
+  padding-bottom: 5px;
+  border-bottom: 1px solid #bbb;
+  padding-left: 5px;
 }
 
 table.list tr.header {
-	font-weight:bold;	
+  font-weight: bold;
 }
 
 .required {
-	color:red;
-	text-align:right;
+  color: red;
+  text-align: right;
 }
 
 .expandProjects {
-	font-size:80%;
+  font-size: 80%;
 }
 
 #selectProjects {
-	font-size:90%;
+  font-size: 90%;
 }
 
 .invisible {
-	display:none;
+  display: none;
 }
+
 .visible {
-	display:inline;
+  display: inline;
 }
 
 .infoWindow {
-   min-height: 90px;
-   max-width:250px;
+  min-height: 90px;
+  max-width: 250px;
 }
 
 #map {
-	border:1px solid #CCC;
-	margin:0 8px 10px;	
+  border: 1px solid #CCC;
+  margin: 0 8px 10px;
 }
 
 .mapDiv {
-	width:900px;	
-	margin-left: 20px;
+  width: 900px;
+  margin-left: 20px;
 }
+
 .formBox {
-	border:1px solid #CCC;
-	background:#FCFCFC;
-	font-size:90%;	
-	padding:5px;	
+  border: 1px solid #CCC;
+  background: #FCFCFC;
+  font-size: 90%;
+  padding: 5px;
 }
 
 .dialogTable h2 {
-	color:#333366;	
+  color: #333366;
 }
 
 .form {
-	width:280px;
+  width: 280px;
 }
 
 .form h5 {
-	margin-top:10px;
-	font-size:100%;
-	color:#000000;
-	display:inline;	
+  margin-top: 10px;
+  font-size: 100%;
+  color: #000000;
+  display: inline;
 }
 
 .geoIP {
-	width:900px;
-	text-align:right;
-	font-size:80%;	
+  width: 900px;
+  text-align: right;
+  font-size: 80%;
 }
 
 .left {
-
+  
 }
 
 .right {
-	padding-left:5px;	
+  padding-left: 5px;
 }
 
 .contestText {
-	font-size:90%;
-	width:700px;
-	padding-bottom:10px;	
+  font-size: 90%;
+  width: 700px;
+  padding-bottom: 10px;
 }
 
-
 ///////////////////////////////////////////////////////
-
 .dialog {
-color:#FFFFFF;
-margin:0px auto 0.5em 28px;
-max-width:760px;
-min-width:8em;
-position:relative;
-z-index:1;
+  color: #FFFFFF;
+  margin: 0px auto 0.5em 28px;
+  max-width: 760px;
+  min-width: 8em;
+  position: relative;
+  z-index: 1;
 }
+
 .dialog .dialogContent, .dialog .t, .dialog .b, .dialog .b div {
-background:transparent url('/ganymede/images/dialogB.png') no-repeat scroll right top;
+  background: transparent url('/ganymede/images/dialogB.png') no-repeat
+    scroll right top;
 }
 
 .dialog .dialogContent {
-padding:0px 12px 0px 0px;
-position:relative;
-}
-.dialog .t {
-background-position:left top;
-height:100%;
-left:0px;
-margin-left:-28px;
-position:absolute;
-top:0px;
-width:28px;
-}
-.dialog .b {
-position:relative;
-width:100%;
-}
-.dialog .b, .dialog .b div {
-font-size:1px;
-height:35px;
-}
-.dialog .b {
-background-position:right bottom;
-}
-.dialog .b div {
-background-position:left bottom;
-margin-left:-28px;
-position:relative;
-width:28px;
-}
-.dialog .hd, .dialog .bd, .dialog .ft {
-position:relative;
-}
-.dialog .wrapper {
-max-height:1000px;
-overflow:auto;
-position:static;
-}
-.dialog h1, .dialog p {
-margin:0px;
-padding:0.5em 0px;
-}
-.dialog h1 {
-padding-bottom:0px;
+  padding: 0px 12px 0px 0px;
+  position: relative;
 }
 
+.dialog .t {
+  background-position: left top;
+  height: 100%;
+  left: 0px;
+  margin-left: -28px;
+  position: absolute;
+  top: 0px;
+  width: 28px;
+}
+
+.dialog .b {
+  position: relative;
+  width: 100%;
+}
+
+.dialog .b, .dialog .b div {
+  font-size: 1px;
+  height: 35px;
+}
+
+.dialog .b {
+  background-position: right bottom;
+}
+
+.dialog .b div {
+  background-position: left bottom;
+  margin-left: -28px;
+  position: relative;
+  width: 28px;
+}
+
+.dialog .hd, .dialog .bd, .dialog .ft {
+  position: relative;
+}
+
+.dialog .wrapper {
+  max-height: 1000px;
+  overflow: auto;
+  position: static;
+}
+
+.dialog h1, .dialog p {
+  margin: 0px;
+  padding: 0.5em 0px;
+}
+
+.dialog h1 {
+  padding-bottom: 0px;
+}
 
 #headerGraphic {
-    background: transparent url("/ganymede/images/ganymedeTile.jpg") top left repeat-x;
-    text-align: left;
-    height: 178px;
-    border-bottom: 1px solid #000;
-    overflow: hidden;
-    width: 100%;
+  background: transparent url("/ganymede/images/ganymedeTile.jpg") top
+    left repeat-x;
+  text-align: left;
+  height: 178px;
+  border-bottom: 1px solid #000;
+  overflow: hidden;
+  width: 100%;
 }
\ No newline at end of file