<?php
include("../sealion.inc");

session_start();
$sm=new Smarty();
$sm->template_dir=DP_SITEROOT . "/templates";
$sm->compile_dir=DP_SITEROOT . "/templates/templates_c";
$sm->cache_dir=DP_SITEROOT . "/templates/cache";


if(!$sm->is_cached('atom-feed.xml',$_SESSION[UID])){

	$fp=new FrontPage();
	$fp->set_uid();

	$sm->assign('TagLine',DP_SITENAME . ": " .DP_SLOGAN);
	$sm->assign('NewWorks',$fp->get_new_poems(20));
	$sm->assign('Title',"Newest Works on" . DP_SITENAME);
	$sm->assign('DateLine',date('Y-m-d').'T'.date('G:i:00O'));
	
}

$sm->cache_lifetime = 300;
$sm->display('atom-feed.xml',$_SESSION[UID]);

echo $c;

?>