blob: cbe6e20e9b2b93639838498f073376105ecaefbc [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($App->getProjectCommon());
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Bundle Recipes";
$pageKeywords = "Eclipse, EclipseRT, Bundle, Recipes";
$pageAuthor = "Eclipse EBR Project";
ob_start();
?>
<div id="midcolumn">
<div class="logo"><img src="/ebr/images/ebr-trans-400x156.png" alt="EBR Logo"/></div>
<p>
Please have a look at <a href="https://github.com/eclipse/ebr">our Git repository</a> for further details.
</p>
<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>
<?
$html = ob_get_clean();
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>