blob: 138c76a3764a808b4f49d5c72327a75fd75ccc62 [file] [log] [blame]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); $theme = "Phoenix"; include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# index.php
#
# Author: Nathan Gervais
# Date: 2008-04-21
#
# Description: Ganymede Landing Page
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Corporate Sponsors";
$pageKeywords = "corporate sponsorship, sponsor, eclipse";
$pageAuthor = "Eclipse Foundation, Inc.";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
# $Nav->addCustomNav("My Link", "mypage.php", "_self");
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
# End: page-specific settings
#
# Place your html content in a file called content/en_pagename.php
ob_start();
?>
<div id="fullcolumn" class="galileo">
<div id="midcolumn">
<div id="banner">
<img src='logo.png'/>
</div>
<h3>Platinum Sponsors</h3>
<div class="imageBlock">
<img src="http://www.eclipse.org/membership/scripts/get_image.php?id=827&size=small"/>
</div>
<h3>Gold Sponsors</h3>
<div class="imageBlock">
<img src="amazon.jpg"/>
<img src="http://www.eclipse.org/membership/scripts/get_image.php?id=656&size=small"/>
<img src="http://www.eclipse.org/membership/scripts/get_image.php?id=657&size=small"/>
</div>
<h3>Silver Sponsors</h3>
<div class="imageBlock">
<img src="http://www.eclipse.org/membership/scripts/get_image.php?id=901&size=small"/>
</div>
<br/>
</div>
<div id="rightcolumn">
<div class="block">
<div class="image">
<a href="http://wiki.eclipse.org/images/c/ca/Eclipse_foundation_about_us.pdf"><img src="http://dev.eclipse.org/huge_icons/apps/preferences-system-network-proxy.png"/></a>
</div>
<div class="text">
<h4><a href="http://wiki.eclipse.org/images/c/ca/Eclipse_foundation_about_us.pdf">About the Eclipse Foundation</a></h4>
<p>About the Eclipse Foundation. (PDF)</p>
</div>
</div>
<div class="block">
<div class="image">
<a href="http://wiki.eclipse.org/images/f/f5/Eclipse_membership.pdf"><img src="http://dev.eclipse.org/huge_icons/categories/applications-internet.png"/></a>
</div>
<div class="text">
<h4><a href="http://wiki.eclipse.org/images/f/f5/Eclipse_membership.pdf">Joining the Eclipse Foundation</a></h4>
<p>More about joining the Eclipse Foundation. (PDF)</p>
</div>
</div>
<div class="block">
<div class="image">
<a href="./support.php"><img src="http://dev.eclipse.org/huge_icons/emblems/emblem-favorite.png"/></a>
</div>
<div class="text">
<h4><a href="./support.php">Call to Action! Support Eclipse!</a></h4>
<p>Details on how your Organization can support Eclipse today.</p>
</div>
</div>
<div class="block">
<div class="image">
<a href="./support.php"><img src="http://dev.eclipse.org/huge_icons/status/software-update-urgent.png"/></a>
</div>
<div class="text">
<h4><a href="./support.php">4th Item</a></h4>
<p>Ian to provide details</p>
</div>
</div>
<div class="sideitem" style="text-align:left;">
<h6>More About Our Supporters:</h6>
<div class="modal noBG">
<ul>
<li class="">
<a href="http://www.eclipse.org/membership/showAllMembers.php" class="link">Organization Supporters</a><br/>
</li>
<li class="">
<a href="http://eclipse.org/donate/donorlist.php" class="link">Individual Supporters</a><br/>
</li>
</ul>
</div>
</div>
</div>
</div>
<?
$html = ob_get_clean();
# Generate the web page
$App->Promotion = TRUE;
$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
$App->generatePage("Nova", $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>