blob: 0db354b83e3cedf7999305990afe68629e15f237 [file] [log] [blame]
<?php
/**
* Copyright (c) 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:
* Eric Poirier (Eclipse Foundation)
* Christopher Guindon (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();
$pageTitle = "The Open Innovation Platform";
ob_start();
?>
<div class="jumbotron featured-jumbotron margin-bottom-0">
<div class="container">
<div class="row">
<div class="col-md-20 col-md-offset-2 col-sm-18 col-sm-offset-3">
<h1><?php print $pageTitle;?></h1>
<p>The Eclipse Foundation provides individuals and organizations with a commercially focused environment
for open source software innovation</p>
<ul class="list-inline margin-top-30">
<li><a class="btn btn-primary" href="about.php">Learn More</a></li>
</ul>
</div>
</div>
</div>
</div>
<?php
$extra_header_html = ob_get_clean();
$Theme->setExtraHeaderHtml($extra_header_html);
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("open source, business, technology, strategy, operational value, strategic value, financial value");
$Theme->setPageAuthor("Eric Poirier");
$Theme->setTitle("Open Innovation Platform - Business Value");
ob_start();
include("content/en_" . $App->getScriptName());
$html = ob_get_clean();
$Theme->setHtml($html);
$Theme->setAttributes('header-wrapper', 'header-default-bg-img');
$Theme->preventCaching();
$Theme->generatePage();