blob: 195c613482a66401a66bb40e4c05f9d21d636136 [file] [log] [blame]
<?php
/**
* Copyright (c) 2015 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/
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once(dirname(__FILE__) . "/../../eclipse.org-common/system/app.class.php");
$App = new App();
$Theme = $App->getThemeClass('eclipse_ide');
$pageTitle = "Eclipse IDE, Photon Edition New and Noteworthy";
$Theme->setPageAuthor('Wayne Beaton');
$Theme->setPageKeywords("");
$Theme->setPageTitle($pageTitle);
ob_start();
?>
<div id="maincontent">
<?php include "noteworthy.html"; ?>
</div>
<?php
$html = ob_get_contents();
ob_end_clean();
$Theme->setHtml($html);
$Theme->setExtraHeaders('<link rel="stylesheet" href="noteworthy.css">');
$Theme->generatePage();