| <?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($App->getProjectCommon()); |
| |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "Eclipse Bundle Recipes"; |
| $pageKeywords = "Eclipse, EclipseRT, Bundle, Recipes"; |
| $pageAuthor = "Eclipse EBR Project"; |
| |
| $App->AddExtraHtmlHeader('<link media="screen" rel="stylesheet" type="text/css" href="/ebr/resources/local.css"/>'); |
| |
| ob_start(); |
| ?> |
| <div id="midcolumn"> |
| <div class="logo"><img src="/ebr/images/ebr-trans-400x156.png" alt="EBR"/></div> |
| |
| <p> |
| Please have a look at <a href="https://github.com/eclipse/ebr">our Git repository</a> for further details. |
| </p> |
| |
| </div> |
| |
| <!-- remove the entire <div> tag to omit the right column! --> |
| <div id="rightcolumn"> |
| <div class="sideitem"> |
| <h6>Incubation</h6> |
| <div id="incubation"><a href="/projects/what-is-incubation.php"><img src="/images/egg-incubation.png" border="0" alt="Incubation" /></a></div> |
| </div> |
| </div> |
| |
| |
| <? |
| $html = ob_get_clean(); |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |