blob: 45d3b9b36d1aa454171d545d3a29973ed979dd3e [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(); $theme = "Phoenix"; include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# index.php
#
# Author: Nathan Gervais
# Date: 2008-04-21
#
# Description: Ganymede Landing Page
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Galileo Release";
$pageKeywords = "eclipse Galileo, Galileo, Galileo release train";
$pageAuthor = "Eclipse Foundation, Inc.";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
# $Nav->addCustomNav("My Link", "mypage.php", "_self");
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
# End: page-specific settings
#
# Place your html content in a file called content/en_pagename.php
ob_start();
?>
<div id="fullcolumn" class="galileo">
<div id="midcolumn">
<div id="linkBlock">
<ul>
<li class="download"><a title="Download" href="/downloads?tab=developer">&nbsp;</a></li>
<!-- <li class="projects"><a title="Projects" href="projects.php">&nbsp;</a></li>-->
<!-- <li class="buzz"><a title="Buzz" href="buzz.php">&nbsp;</a></li>-->
<li class="nest"><a title="Galileo on Twitter" target="_blank" href="http://galileo.chinposin.com/">&nbsp;</a></li>
<li class="friends"><a title="Friends of Eclipse" href="friends.php">&nbsp;</a></li>
</ul>
</div>
<div id="">
<p class="description">Eclipse Galileo is the annual release of Eclipse projects; this year it includes 33 projects. Help test out the latest Milestone of Galileo.</p>
</div>
</div>
</div>
<?
$html = ob_get_clean();
# Generate the web page
// $App->Promotion = TRUE;
$App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
$App->generatePage("Nova", $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>