blob: fe73afd30964aeed358f3a06dd5dfafd3c8ca55f [file] [log] [blame]
<?php
/**
* Copyright (c) 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 accompanies
* this distribution, and is available at http://eclipse.org/legal/epl-2.0
*/
require_once (dirname(__FILE__) . "/../../../eclipse.org-common/system/app.class.php");
require_once (dirname(__FILE__) . "/../../../eclipse.org-common/system/nav.class.php");
$App = new App();
$Nav = new Nav();
$Theme = $App->getThemeClass();
include($App->getProjectCommon());
$pageTitle = "New Eclipse Foundation Committer and Contributor Agreements FAQ";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("legal, documents, about");
$Theme->setPageAuthor("Sharon Corbett");
ob_start();
include("faq.html");
$html = ob_get_clean();
ob_end_clean();
$Theme->setNav($Nav);
$Theme->setHtml($html);
$Theme->generatePage();