blob: 42e5ee26a638ba44b9833984f2ecc3b87aa2c4d2 [file] [log] [blame]
<?php
/**
* Copyright (c) 2013, 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:
* Christopher Guindon (Eclipse Foundation) - Initial implementation
* Mike Milinkovich (Eclipse Foundation)
* Eric Poirier (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
$App = new App();
$Theme = $App->getThemeClass();
include ($App->getProjectCommon());
$pageTitle = "Eclipse SOA Initiative";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("soa, developers, eclipse");
$Theme->setPageAuthor("Donald Smith");
ob_start();
include("content/en_" . $App->getScriptName());
$html = ob_get_clean();
$Theme->setHtml($html);
$Theme->generatePage();