blob: 350e1c4bae3d0046137965539426c05807d047fe [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'
#*****************************************************************************
#
# template.php
#
# Author: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Host an Eclipse 5th Birthday Party";
$pageKeywords = "";
$pageAuthor = "Ian Skerrett";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 1);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
# End: page-specific settings
#
// This file is linked to from lots of different places.
// Use absolute paths to make sure that we can actually test
// that the file renders properly (i.e. testing using) "/index.php",
// and "/home/index.php" both work.
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<p>Eclipse is celebrating its 5th birthday on November 7, 2006. It will have been 5 years
since Eclipse was first release as open source software. To celebrate, we would like to organize local birthday
parties and we need your help. </p>
<p>Here is a <a href="birthdayparties.php">list of parties</a> already planned.</p>
<p>If you would like to organize a local Eclipse birthday party, you choose the place, set the time, and
organize the venue (maybe a local pub or bar), and the Eclipse Foundation will cover the cost of food and
beverage up to $1,000 USD.</p>
<p>In order to host a birthday party you must be an Eclipse committer or an employee of an
Eclipse member company. To be reimbursed for your party hosting costs, the Eclipse Foundation will require you to submit receipts after the event
and to post photos of the event for sharing with the community.</p>
<p>Please contact Lynn Gayowski at <a href="mailto:birthday@eclipse.org?subject=I'd like to host an Eclipse Birthday Party">birthday@eclipse.org</a> to register your party or for more information.</p>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>