<% // change php.ini var include_path to include our smarty dir ini_set("include_path",".:/usr2/home/mutantsandmasterminds.com/cgi-out/smarty/:/usr/local/lib/php"); // set path to Smarty directory define("SMARTY_DIR","/usr2/home/mutantsandmasterminds.com/cgi-out/smarty/"); // call the smarty class require_once(SMARTY_DIR."Smarty.class.php"); // create a new instance of smarty class $smarty = new Smarty; // get the current year for the copyright footer $aryThisYear = getdate(time()); $thisYear = $aryThisYear["year"]; $smarty->assign("thisYear",$thisYear); // grab gimmicks_gadgets.tpl $smarty->display("freedom_city.tpl"); %>