blob: 02524669fc03848f8aaa34c968ae0ccce57666b7 [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(); include("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
#
# Begin: page-specific settings. Change these.
$pageTitle = "New Re-design of Eclipse.org Home Page";
$pageKeywords = "Eclipse, homepage, beta, 2006";
$pageAuthor = "Nathan Gervais";
# 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
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<h2>Community Bulletin</h2>
<p>We are re-designing the eclipse.org home page. The intention is to make it easier for our user community to find relevant information about the Eclipse projects and also make it easier to download.<br/> <br/>
Right now we have a beta version of the <a href="http://www.eclipse.org/home/index2.php">home page</a> that will be displayed on a random basis to about 25% of the home page visitors. We have also opened a <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=159588">bug to collect feedback</a>. Please let us know what you like and dislike about the home page.
</p>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>