Add jumbotron for membership home page and text edits

Change-Id: Iaaf874dea8c8201038a33af5f9ff28dc16b6176a
Signed-off-by: Eric Poirier <eric.poirier@eclipse-foundation.org>
diff --git a/content/en_index.php b/content/en_index.php
index 7401538..f507111 100644
--- a/content/en_index.php
+++ b/content/en_index.php
@@ -12,13 +12,9 @@
  ?>
 
 <div class="col-md-14 col-lg-16">
-  <h1><?php print $pageTitle;?></h1>
-  <p>The Eclipse Foundation and Eclipse community is supported by our member organizations.
-  Through this support, the Eclipse Foundation provides the open source community with IT, Intellectual
-  Property, Mentors and Marketing services.
-  </p>
-  <h2 class="h3 padding-top-20">Organizations that join the Eclipse Foundation<br/>can <strong>benefit in the following ways:</strong></h2>
-  <hr/>
+
+
+  <h2 class="h3 padding-top-20">Organizations that join the Eclipse Foundation<br/>can benefit in the following ways:</h2>
 
   <ul class="fa-ul fa-ul-2x">
     <li><i class="fa-li fa-2x fa fa-check-circle orange"></i>Ability to join and participate in the Eclipse Foundation Working Groups,
diff --git a/content/en_sidebar.php b/content/en_sidebar.php
index 393c68a..9c5c29e 100644
--- a/content/en_sidebar.php
+++ b/content/en_sidebar.php
@@ -21,7 +21,7 @@
         </div>
         <div class="col-sm-24 col-md-15">
           <h3><a href="/membership/exploreMembership.php">Explore our Members</a></h3>
-          <p>Learn more about the products and services provided by the members of Eclipse</p>
+          <p>Learn more about the products and services provided by the members of Eclipse</p>
         </div>
       </div>
     <?php endif;?>
diff --git a/index.php b/index.php
index fbebbb8..b85a4e0 100644
--- a/index.php
+++ b/index.php
@@ -19,7 +19,7 @@
 $App->PageRSS = "/projects/reviews-rss.php";
 $Theme = $App->getThemeClass();
 
-$pageTitle = "Eclipse Membership";
+$pageTitle = "Eclipse Membership Benefits";
 $Theme->setPageTitle($pageTitle);
 $Theme->setPageKeywords("eclipse membership, become a member, membership faq, membership expire");
 $Theme->setPageAuthor("Christopher Guindon");
@@ -28,11 +28,26 @@
 $hide_faqs = TRUE;
 $show_corporate_sponsors_block = TRUE;
 
+ob_start();
+?>
+<div class="jumbotron featured-jumbotron margin-bottom-0">
+  <div class="container">
+    <div class="row">
+      <div class="col-md-20 col-md-offset-2 col-sm-18 col-sm-offset-3">
+        <h1>Eclipse Membership</h1>
+        <p>Through the support of our member organizations, the Eclipse Foundation provides the open source community with IT, Intellectual Property, Mentors and Marketing services.</p>
+      </div>
+    </div>
+  </div>
+</div>
+<?php
+$extra_header_html = ob_get_clean();
+$Theme->setExtraHeaderHtml($extra_header_html);
+
 // Place your html content in a file called content/en_pagename.php
 ob_start();
 include("content/en_" . $App->getScriptName());
 $html = ob_get_clean();
 $Theme->setHtml($html);
-
-// Generate the web page
+$Theme->setAttributes('header-wrapper', 'header-alternate-bg-img-1');
 $Theme->generatePage();
\ No newline at end of file