Bug 538940 - IDE page is empty, but linked to from the footer

Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org>
diff --git a/content/en_index.php b/content/en_index.php
index a17e17f..cb71bdc 100644
--- a/content/en_index.php
+++ b/content/en_index.php
@@ -23,12 +23,7 @@
             support and other features into any of our default packages, and the Eclipse
             Marketplace allows for virtually unlimited customization and extension.
           </p>
-          <ul class="list-inline">
-            <li><a href="<?php print $java['url']?>"><img width="42" height="42" alt="<?php print $java['name']?>" src="<?php print $java['icon']?>"> Java IDE</a></li>
-            <li><a href="<?php print $jee['url']?>"><img width="42" height="42" alt="<?php print $jee['name']?>" src="<?php print $jee['icon']?>"> Java EE</a></li>
-            <li><a href="<?php print $cpp['url']?>"><img width="42" height="42" alt="<?php print $cpp['name']?>" src="<?php print $cpp['icon']?>"> C/C++</a></li>
-            <li><a href="<?php print $php['url']?>"><img width="42" height="42" alt="<?php print $php['name']?>" src="<?php print $php['icon']?>"> PHP</a></li>
-          </ul>
+         <p><a href="/downloads/packages" class="btn btn-primary"><i class="fa fa-download"></i> Download</a></p>
         </div>
         <div class="col-md-9 right highlight-img hidden-xs hidden-sm col-sm-offset-1">
           <img src="images/desktop-ide-screenshot.jpg" class="img-responsive" alt="Eclipse Desktop IDE"/>
diff --git a/index.php b/index.php
index d00b6d2..a24d042 100644
--- a/index.php
+++ b/index.php
@@ -13,7 +13,6 @@
  */
 
 require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/downloads/downloads/controller.compare.php");
 
 $App = new App();
 $Theme = $App->getThemeClass();
@@ -24,13 +23,7 @@
 $Theme->setPageKeywords("eclipse,project,plug-ins,plugins,java,ide,swt,refactoring,free java ide,tools,platform,open source,development environment,development,ide");
 $Theme->setPageAuthor("Christopher Guindon");
 
-$Packages = new CompareController($App);
-$Packages->setPrefixPackage('release');
 
-$jee = $Packages->getPackages('jee-package');
-$java = $Packages->getPackages('java-package');
-$php = $Packages->getPackages('php-package');
-$cpp = $Packages->getPackages('cpp-package');
 
 // Place your html content in a file called content/en_pagename.php
 ob_start();