| <?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 = "Help the Eclipse Community and Win an Eclipse Fleece Shirt"; | |
| $pageKeywords = "Eclipse Foundation, java one, party, community, bulletin"; | |
| $pageAuthor = "Donald Smith"; | |
| # 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> | |
| The Eclipse community would highly value your opinions and ideas on the need for | |
| Eclipse-oriented training and the types of educational experiences that | |
| should be offered. | |
| Help us out by completing | |
| <a href="http://www.surveymonkey.com/s.asp?u=451703025100">this survey</a> and be | |
| entered to win one of five Eclipse Fleece Shirts!<br/> | |
| Survey closes end of business EST January 3rd, 2007. | |
| </p> | |
| </div> | |
| </div> | |
| EOHTML; | |
| # Generate the web page | |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | |
| ?> | |