| <?php |
| /** |
| * Copyright (c) 2022 Eclipse Foundation and others. |
| * |
| * 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: |
| * Eric Poirier (Eclipse Foundation) - Initial implementation |
| * |
| * SPDX-License-Identifier: EPL-2.0 |
| */ |
| |
| require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); |
| $App = new App(); |
| $Theme = $App->getThemeClass(); |
| |
| $pageTitle = 'Specifications'; |
| $Theme->setPageKeywords("Specifications, Eclipse Foundation"); |
| $Theme->setPageTitle($pageTitle); |
| |
| ob_start(); |
| ?> |
| <div class="jumbotron featured-jumbotron margin-bottom-0"> |
| <div class="container"> |
| <div class="row"> |
| <div class="col-md-24"> |
| <h1 class="jumbotron-title">Specifications</h1> |
| <h2 class="h3 fw-600">The Eclipse Foundation Specification Process (EFSP) provides an open and transparent framework for the development of community-driven, open source-friendly specifications. </h2> |
| </div> |
| </div> |
| </div> |
| </div> |
| <?php |
| $extra_header_html = ob_get_clean(); |
| $Theme->setExtraHeaderHtml($extra_header_html); |
| |
| // Place your html content in a file called content/en_pagename.php |
| ob_start(); |
| include ("content/en_index.html"); |
| $html = ob_get_clean(); |
| |
| $Theme->setAttributes('header-wrapper', 'header-specifications'); |
| $Theme->setHtml($html); |
| $Theme->setExtraHeaders('<link href="/specifications/styles.css?v=1" media="screen" rel="stylesheet" type="text/css"/>'); |
| $Theme->setThemeVariables(array('main_container_classes' => 'container-fluid')); |
| $Theme->removeAttributes('breadcrumbs', 'breadcrumbs-default-margin'); |
| |
| $Theme->generatePage(); |