blob: 543804b8873829597ccfa059c5215f019deafc8e [file]
<?php
/**
* Copyright (c) 2015, 2018, 2023 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
* Eric Poirier (Eclipse Foundation)
* Olivier Goulet (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
header('Location: /sponsor/ide', true, 302);
exit();
$App = new App();
$Theme = $App->getThemeClass();
$App->preventCaching();
$pageTitle = "Eclipse Sponsorship";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("friends of eclipse, sponsor, contribution");
// Custom theme variables
$variables = array();
$variables['main_container_classes'] = 'container-fluid sponsor-page';
$App->setThemeVariables($variables);
// Generate the web page
ob_start();
include("content/en_" . $App->getScriptName());
$html = ob_get_clean();
$Theme->setHtml($html);
$Theme->removeAttributes('breadcrumbs', 'breadcrumbs-default-margin');
$Theme->generatePage();