blob: 8799a1a924bfe18e673bf01f55379bbfab93ede2 [file] [log] [blame]
<?php
/**
* Copyright (c) 2005, 2017, 2018 Eclipse Foundation.
*
* This program and the accompanying materials are made available
* under the terms of the Eclipse Public License 2.0 which accompanies
* this distribution, and is available at http://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 = "Eclipse Foundation Governance Documents";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("about, documents, foundation, governance, bylaws, agreement");
$Theme->setPageAuthor("M. Milinkovich Nov 20/05");
ob_start();
include("content/en_" . $App->getScriptName());
$html = ob_get_clean();
$Theme->setNav($Nav);
$Theme->setHtml($html);
$Theme->generatePage();