blob: 4a4c708ebf01ffa77cb4939792a5e6d97f3adcaf [file] [log] [blame]
<?php
/**
* Copyright (c) 2015, 2016, 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");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
$App = new App();
$Nav = new Nav();
$Theme = $App->getThemeClass();
$App->AddExtraHtmlHeader('<link rel="stylesheet" href="noteworthy.css">');
$pageTitle ="Eclipse Neon New and Noteworthy";
$Theme->setPageAuthor('Wayne Beaton');
$Theme->setPageKeywords("eclipse neon, release, simultaneous, release train, neon");
$Theme->setPageTitle($pageTitle);
ob_start();
?>
<div id="maincontent">
<?php include "noteworthy.html"; ?>
</div>
<?php
$html = ob_get_clean();
$Theme->setHtml($html);
$Theme->generatePage();