blob: 13fd0144bb86a570ff149b9ff83346c5d09408f4 [file] [log] [blame]
<?php 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()); # All on the same line to unclutter the user's desktop'
$pageTitle = "SMILA - Contributing";
$pageKeywords = "SMILA, Unified Information Access Architecture, unstructured information management, information logistics, semantic web, framework, platform, eclipse, big data, bigdata";
$pageAuthor = "Igor Novakovic";
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h1>Contributing</h1>
<p>
If you are interested in contributing your code to SMILA,
then the good place to start is to read the following <a href="http://wiki.eclipse.org/SMILA#For_developers.2C_contributors_and_integrators" target="_blank">documentation</a>
maintained in our wiki.
</p>
</div>
EOHTML;
include('rightColumn.php');
$html .= $rightColumn;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>