blob: ccf3a5e7bf6ccfeb2637c9b47af828e543e7d4ba [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2015 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:
* Wayne Beaton (Eclipse Foundation)- initial API and implementation
*******************************************************************************/
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();
$Menu = new Menu();
$Nav = new Nav();
include($App->getProjectCommon());
include( '_commonLeftNav.php' );
ob_start();
?>
<div id="maincontent">
<div id="midcolumn">
<h1>How to Install Eclipse Mars</h1>
<p></p>
<h3>Install a Java Runtime Environment</h3>
<h3>Download Eclipse</h3>
<h3>Troubleshooting</h3>
</div>
</div>
<?php
$html = ob_get_contents();
ob_end_clean();
$App->generatePage($theme, $Menu, NULL , $pageAuthor, $pageKeywords, $pageTitle, $html);
?>