blob: 09a20116f782f5248a80b7623a50bc4767dd1d2c [file] [log] [blame]
<?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/
$theme = "Nova";
$App->Promotion = TRUE;
# Define your project-wide Nav bars here.
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
$Nav->addNavSeparator("Links", "");
$Nav->addCustomNav("The Challenge", "http://www.eclipse.org/community/e4RoverMars/challenge.php", "_self", 1);
$Nav->addCustomNav("Get Started", "http://www.eclipse.org/community/e4RoverMars/getstarted.php", "_self", 1);
$Nav->addCustomNav("How to Play", "http://www.eclipse.org/community/e4RoverMars/howtoplay.php", "_self", 1);
$Nav->addCustomNav("Improve the Client", "http://www.eclipse.org/community/e4RoverMars/improveclient.php", "_self", 1);
$Nav->addCustomNav("Watch the e4-Rover", "http://www.eclipse.org/community/e4RoverMars/watch.php", "_self", 1);
$Nav->addCustomNav("Get Help", "http://www.eclipse.org/community/e4RoverMars/gethelp.php", "_self", 1);
$Nav->addCustomNav("EclipseCon 2010", "http://www.eclipsecon.org/2010/", "_self", 1);
$Nav->setHTMLBlock(sponsor());
function sponsor() {
ob_start();
?><div class="sponsor">
<h4>A big thank you to our sponsors.</h4>
<a href="http://www.nasa.gov" target="_blank"><img src="nasa.png"/></a>
<a href="http://mindstorms.lego.com/" target="_blank"><img src="mindstorm.png"/></a>
<a href="http://aws.amazon.com/" target="_blank"><img src="amazon.png"/></a>
</div>
<?
return ob_get_clean();
}
?>