<?

// BUILD RSS FEED FROM CURRENT HEADLINES

global $converted_date;

// get gazette functions
include ($_SERVER['DOCUMENT_ROOT']."/includes/gazette_functions.inc.php");

// get front page config
include ($_SERVER['DOCUMENT_ROOT']."/front/content/front_page_config.inc.php");

// convert the date like 20041203 to 2004/12/03
$the_slash_date = add_slashes_to_date_str($front_date_str);

// convert the date like 2004/12/03 to a php array
$date_array = convert_to_date_array($the_slash_date);

$converted_date = date("l, F jS Y", $date_array);

$format_syndicated = 'true';
	
include ($_SERVER['DOCUMENT_ROOT']."/front/content/front_new.php");

?>