blob: 3a65f34fdd7ad6f562eeba130c60ab0df53024ed [file] [log] [blame]
<?php
/**
* Copyright (c) 2017 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($_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();
include("_projectCommon.php");
$Theme = $App->getThemeClass($theme);
$Theme->setNav($Nav);
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Foundation Legal Frequently Asked Questions (FAQ)";
$Theme->setPageTitle($pageTitle);
$Theme->setPageAuthor('Mike Milinkovich');
$Theme->setPageKeywords('legal, faq, foundation');
ob_start();
include("content/en_" . $App->getScriptName());
$html = ob_get_clean();
$Theme->setHtml($html);
$Theme->generatePage();