| <?php |
| /** |
| * ***************************************************************************** |
| * Copyright (c) 2014, 2017 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://eclipse.org/legal/epl-v10.html |
| * |
| * Contributors: |
| * Christopher Guindon (Eclipse Foundation) - Initial implementation |
| * 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"); |
| require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); |
| |
| $App = new App(); |
| $Nav = new Nav(); |
| $Menu = new Menu(); |
| include ($App->getProjectCommon()); |
| |
| $pageTitle = "Eclipse Logos and Artwork"; |
| |
| $Theme = $App->getThemeClass($theme); |
| |
| $Theme->setPageAuthor('Eclipse Foundation'); |
| $Theme->setPageKeywords('eclipse, logo, eclipse logo, eclipse logos, artwork, logo, logos, trademark, trademarks, documents, about'); |
| $Theme->setPageTitle($pageTitle); |
| |
| ob_start(); |
| include ("content/en_index.php"); |
| $html = ob_get_clean(); |
| $Theme->setHtml($html); |
| $Theme->setExtraHeaders('<link rel="stylesheet" type="text/css" href="public/stylesheets/artwork.min.css"/>'); |
| $Theme->generatePage(); |