blob: fab9003fa95387390eeb1b6c23a2899bf9bcba6d [file] [log] [blame]
<?php
/**
* Copyright (c) 2005, 2018 Eclipse Foundation.
*
* 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)
*/
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();
include ($App->getProjectCommon());
$pageTitle = "2019 Annual Community Report";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("eclipse, foundation, community, annual report, 2019, vision, mission, eclipse vision, eclipse foundation mission, eclipse mission");
$Theme->setPageAuthor("Mike Milinkovich");
$html = <<<EOHTML
<div id="midcolumn">
EOHTML;
ob_start();
include ("2019_annual_report.html");
$html .= ob_get_clean();
$html .= $related_links;
$Theme->setNav($Nav);
$Theme->setHtml($html);
$Theme->generatePage();