blob: b85bf88f5ca59d408b693828d361c88fe15ec5d0 [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2015, 2017 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
*******************************************************************************/
require_once(dirname(__FILE__) . "/../../eclipse.org-common/system/app.class.php");
require_once(dirname(__FILE__) . "/../../eclipse.org-common/system/nav.class.php");
require_once(dirname(__FILE__) . "/../../eclipse.org-common/system/menu.class.php");
$App = new App();
$Menu = new Menu();
$Nav = new Nav();
include($App->getProjectCommon());
$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_contents();
ob_end_clean();
$App->generatePage($theme, $Menu, NULL , $pageAuthor, $pageKeywords, $pageTitle, $html);
?>