| <?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()); |
| |
| /******************************************************************************* |
| * Copyright (c) 2009 Eclipse Foundation and others. |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Eclipse Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * http://www.eclipse.org/legal/epl-v10.html |
| * |
| * Contributors: Christopher Frost |
| * |
| * |
| *******************************************************************************/ |
| |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "EBR - Home"; |
| $pageKeywords = "Eclipse, EclipseRT, Bundle, Recipes"; |
| $pageAuthor = "Christopher Frost"; |
| |
| ob_start(); |
| ?> |
| <div id="midcolumn"> |
| <!-- <p id='announcement'> |
| </p> --> |
| |
| <div class="logo"><img src="/ebr/images/ebr-trans-400x156.png" alt="EBR"/></div> |
| |
| <p> |
| This project is just getting started, see the Quick links to the right for more information. |
| </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 class="sideitem"> |
| <h6>Quick Links</h6> |
| <ul> |
| <li><a href="http://wiki.eclipse.org/EBR">EBR Wiki</a></li> |
| <li><a href="http://www.eclipse.org/forums/index.php/f/261/">EBR Forum</a></li> |
| <li><a href="https://dev.eclipse.org/mailman/listinfo/ebr-dev">Developer Mailing List</a></li> |
| <li><a href="http://git.eclipse.org/c/ebr">Source Code</a></li> |
| <li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?classification=RT&query_format=advanced&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=EBR">EBR Bugs</a></li> |
| </ul> |
| </div> |
| <!-- div class="sideitem"> |
| <h6><h6> tag</h6> |
| <div class="modal"> |
| Wrapping your content using a div.modal tag here will add the gradient background |
| </div> |
| </div --> |
| </div> |
| |
| |
| <? |
| $html = ob_get_clean(); |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |