blob: 01984278eb4ce89bbd47a947065081ba1e206f61 [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("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
#
# Begin: page-specific settings. Change these.
$pageTitle = "Celebrate Helios at an Eclipse DemoCamp";
$pageKeywords = "eclipse, demo, camp";
$pageAuthor = "Ian Skerrett";
# 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
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<h2>Community Bulletin</h2>
<p>Members of the Eclipse community will be celebrating the Helios release at
<a href="http://wiki.eclipse.org/Eclipse_DemoCamps_Helios_2010">DemoCamps</a> around the world from the last week of May until June 30.
Typically a DemoCamp consists of a series of short demos and presentations from developers building new
and interesting solutions with Eclipse. It is a great way to discover and learn about new Eclipse
technology. There is also lots of time for informal conversation and networking, so DemoCamps are a
great way to connect with colleagues and friends.</p>
<p>Check-out the <a href="http://wiki.eclipse.org/Eclipse_DemoCamps_Helios_2010">list of cities hosting
DemoCamps</a> and consider signing up to demo what you
are doing with Eclipse. Plan to attend and enjoy meeting some interesting Eclipse people.</p>
<br><br>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="http://wiki.eclipse.org/Eclipse_DemoCamps_Helios_2010">DemoCamp List</a></li>
<li><a href="http://www.eclipse.org/community/democamp/organizedemocamp.php">Organize a DemoCamp</a></li>
</ul>
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>