blob: f968f72fe75fde785af8200315c3f9f71d24830b [file] [log] [blame]
<?php
/**
* Copyright (c) 2015, 2018 Eclipse Foundation and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Wayne Beaton (Eclipse Foundation)- initial API and implementation
* Eric Poirier (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
$App = new App();
$Theme = $App->getThemeClass();
$pageTitle = "Install Mars";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("eclipse Mars, release, simultaneous, release train, mars");
$Theme->setPageAuthor("Wayne Beaton");
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();
$Theme->setHtml($html);
$Theme->generatePage();