blob: 81c129a6e60a094910fec4141f38364e6c441b03 [file] [log] [blame]
<?php
/**
* Copyright (c) 2015, 2017, 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:
* Eric Poirier (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once(dirname(__FILE__) . "/../../eclipse.org-common/system/app.class.php");
$App = new App();
$Theme = $App->getThemeClass();
$App->AddExtraHtmlHeader('<link rel="stylesheet" href="noteworthy.css">');
$pageTitle ="Eclipse IDE, Oxygen Edition New and Noteworthy";
$pageAuthor = "Wayne Beaton";
ob_start();
?>
<div id="maincontent">
<?php include "noteworthy.html"; ?>
</div>
<?php
$html = ob_get_clean();
$Theme->setHtml($html);
$Theme->generatePage();