<?php

include("eff_setup2.php");
$smarty = new EFFSmarty;

// get these from cgi... filename? comment in first line of html?
$vol = "18";
$num = "05";
$date = "February 18, 2005";

$smarty->assign('title',"EFFector Vol. $vol, No. $num, $date");
$smarty->assign('breadcrumb','true');
$issue = array("EFFector" => "/effector/", "Volume $vol" => "/effector/$vol/");
$smarty->assign('issue',$issue);
$smarty->assign('issue',$issue);
$smarty->assign('effector',"true");
$content .= implode('', file($num.".html"));

global $REQUEST_URI;
$smarty->assign('content',$content);
$smarty->display('generic.tpl',$REQUEST_URI);

?>
