blob: 49ad0d341f9dd99d2915484ee58440b72f4d4afc [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 = "Friends of Eclipse";
$pageKeywords = "Friends of Eclipse, Helios";
$pageAuthor = "Nathan Gervais";
include('scripts/wantedFunctions.php');
# Paste your HTML content between the EOHTML markers!
ob_start();
?>
<div id="fullcolumn" class="heliosBlank clearfix">
<ul><?=sideDonorList(50, FALSE);?><ul>
</div>
<?
$html = ob_get_clean();
$App->AddExtraHtmlHeader('<link type="text/css" href="/helios/style.css" rel="stylesheet"/>');
# Generate the web page
$App->generatePage($theme, $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>