Hello
Type this code in theme.php :
function themesidebox($title, $content) {
$tmpl_file = “themes/yourthemes/blocks.html”;
$thefile = implode(”", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = “\$r_file=\”".$thefile.”\”;”;
eval($thefile);
print $r_file;
}
Then create a html file called blocks.html in your theme folder… The possibilities of modifications are easier…
See you