blob: f333d6aa4a89664bb55285a488ee17ed1d1fa0b2 [file] [log] [blame]
<?php
/**
* Copyright (c) 2014, 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 = "Explore Working Groups";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("eclipse, working, groups");
$Theme->setPageAuthor("Christopher Guindon");
include_once 'assets/inc/app.php';
ob_start();
print wg_output($working_group, 'active', 4);
$html = ob_get_clean();
$Theme->setHtml($html);
$Theme->setDisplayHeaderTitle(TRUE);
$Theme->generatePage();