| <?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 = "Call for Sponsorships Open for EclipseCon 2007"; | |
| $pageKeywords = "EclipseCon, 2007"; | |
| $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>EclipseCon 2007 Sponsorship Packages are now available. Full details can be found | |
| at the <a href="http://www.eclipsecon.org/2007/index.php?page=sponsorship/">EclipseCon 2007</a> website. | |
| Do not delay as a number of opportunities are available on a first-come-first-serve basis. </p> | |
| <p>Contact <a href="mailto:exhibitors07@eclipse.org">Exhibitors07@eclipse.org</a> for more details.</p> | |
| <center># # #</center> | |
| <br /> | |
| <br> | |
| <br> | |
| </div> | |
| </div> | |
| EOHTML; | |
| # Generate the web page | |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | |
| ?> | |