blob: 0245e77bc80f4011b0618929d685ebf8a026b490 [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2007 - 2018 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eric Poirier (Eclipse Foundation)
*******************************************************************************/
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();
$pageTitle = "Member Distro Downloads Program";
$Theme->setPageAuthor('Eclipse Foundation');
$Theme->setPageKeywords("Eclipse, programs, membership, promotion, advertising, distros, distributions, marketing");
$Theme->setPageTitle($pageTitle);
ob_start();
include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
// Generate the web page
$Theme->setNav($Nav);
$Theme->setHtml($html);
$Theme->generatePage();