blob: 0ef44cdfba4156d5e6193d8a99a8f59050cb09b7 [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 = "Help Design Eclipse Shirts for 2010";
$pageKeywords = "eclipse, shirt, t-shirt, tshirt, contest";
$pageAuthor = "Lynn Gayowski";
# 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>
The Eclipse Foundation would like your help to design a graphic for the 2010 Eclipse shirts. The
shirts are black, long-sleeved t-shirts and we need a graphic for the sleeve. Submit your ideas
through <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=300XXX" target="blank">bug 300XXX</a>.
If you submit the winning design, we'll send you one of the new shirts.</p>
<h3>Entries</h3>
<p>
Click on any picture to see its full-size version.
</p>
<table align="top">
<tr height="105">
<td valign="top" width="120"><a href="http://www.eclipse.org/artwork/images/eclipse_neg_wdmk_bw_sm.jpg" target="blank"><img src="http://www.eclipse.org/artwork/images/eclipse_neg_wdmk_bw_sm.jpg" height="100" border="0"></a></td>
</tr>
</table>
<h3>Design Guidelines</h3>
<p>
<ul>
<li>All designs must be original work</li>
<li>The maximum image size allowed is 35.5 cm (14") wide by 7.5 cm (3") tall</li>
<li>Designs using 1 colour are preferred</li>
<li>Solid blocks of colour, rather than shading work better with the t-shirt imprinting process</li>
<li>If you want to incorporate the Eclipse logo, various formats can be found on the <a href="http://www.eclipse.org/artwork/">artwork page</a></li>
</ul>
</p>
<h3>Entry Instructions</h3>
<p>
Go to <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=300XXX" target="blank">bug 300XXX</a> and submit your image as an attachment.
<br><br>
The deadline for entries is January 29, 2010 at 4:00 pm EST and multiple entries are allowed.
</p>
<h3>Questions?</h3>
<p>
<a href="mailto:tshirt@eclipse.org">tshirt@eclipse.org</a>
</p>
<br><br>
</div>
<!-- remove the entire <div> tag to omit the right column! -->
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>