blob: fc3e64f9ac2a0cc3cec410dcdf5a15be1fa519e0 [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'
/*******************************************************************************
* Copyright (c) 2009-2010 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:
*
*******************************************************************************/
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse.org - Indigo Simultaneous Release";
$pageKeywords = "indigo, release, simultaneous, release train, 3.7";
$pageAuthor = "Nathan Gervais";
# Paste your HTML content between the EOHTML markers!
ob_start();
?>
<div id="fullcolumn" class="indigo">
<div id="container">
<div id="nav">
<div id="spacer">&nbsp;</div>
<ul>
<li><a href="/downloads/">Downloads</a></li>
<li><a href="projects.php">Projects</a></li>
<li><a href="blogathon.php">Blogathon</a></li>
<li class="last"><a href="wanted.php">The Indigo 500</a></li>
</ul>
</div>
<div id="window">
<p class="description">Eclipse Indigo is the annual release of Eclipse projects in 2010; this year XX project teams are part of the release. <br/>
<br/>Click <a style="color:#FFF;" href="http://wiki.eclipse.org/Simultaneous_Release">here</a> to find out about the newest Eclipse Simultaneous Release</p>
</div>
</div>
</div>
<?
$html = ob_get_clean();
# Generate the web page
$App->Promotion = TRUE;
$App->AddExtraHtmlHeader('<link type="text/css" href="/indigo/style.css" rel="stylesheet"/>');
$App->generatePage('Nova', $Menu, NULL , $pageAuthor, $pageKeywords, $pageTitle, $html);
?>