blob: 6a0fb996f150836a36d020e4e338fb9edcc9d0e1 [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'
#*****************************************************************************
#
# 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 = "EclipseCon Membership Support Page";
$pageKeywords = "Type, page, keywords, here";
$pageAuthor = "Type your name here";
# 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>
<p> In support of any community outreach you may be planning to do as part of your EclipseCon activities, here are some
documents that may be helpful:
</p>
<ul>
<li>For textual content, right click and "Save As" either of these files:
<ul>
<li><a href="./EclipseConAD.txt">Text File description of EclipseCon</a></li>
<li><a href="./eclipsecon.html">Clean HTML Description of EclipseCon</a></li>
</ul>
</li>
<li> For Banners and Graphics of varying sizes and formats, please visit:
<ul>
<li><a href="http://www.eclipsecon.org/2007/index.php?page=friends/">Friends of EclipseCon</a></li>
</ul>
</li>
</ul>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>