<?php

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

// get these from cgi... filename? comment in first line of html?
$vol = "17";
$num = "41";
$date = "November 11, 2004";

$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);

?>
