blob: 1cccb01e06f978bf701f378982b7ef37035aa148 [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="clearfix">
<div class="monolith">
<?=sideDonorList(500, FALSE);?>
</div>
</div>
<?
$html = ob_get_clean();
$html = mb_convert_encoding($html, "HTML-ENTITIES", 'auto');
$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);
?>