blob: 9c2940ad0b4db45208a743b7e6f1dc2c7efa27fa [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'
#*****************************************************************************
#
# friends.php
#
# Author: Nathan Gervais
# Date: 2009-05-21
#
# Description: Galileo Friends Landing Page
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Thank you Friends of Helios!";
$pageKeywords = "Friends of Eclipse, Helios";
$pageAuthor = "Nathan Gervais";
include('scripts/wantedFunctions.php');
# Paste your HTML content between the EOHTML markers!
ob_start();
?>
<style>
h1 { font-size:32px;}
#novaContent { background: #FFF url('/home/images/blankBG.jpg') no-repeat; }
.monolith { width:700px; margin: 0px auto; text-align:justify; }
</style>
<div id="fullcolumn" class="clearfix">
<div style="width:700px; margin:10px auto;">
<h1>Thank you Friends of Helios!</h1><br/>
<img style="float:left;" src="/donate/images/starTrans.png"/>
<p style="font-size:18px;line-height:24px; color:#7036BE;"><b>A big thank you to all <span style="font-size:24px">487</span> of our Friends of Helios. The funds raised will be used to help support the Eclipse community. Your generousity is very much appreciated - Helios wouldn't be the same without you!</b></p>
</div>
<div class="monolith">
<?=sideDonorList(500, FALSE);?>
</div>
</div>
<?
$html = ob_get_clean();
$html = mb_convert_encoding($html, "HTML-ENTITIES", 'auto');
# Generate the web page
$App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>