if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
require_once INCLUDES."theme_functions_include.php";
// theme settings
$body_text = "#000000";
$body_bg = "#ffffff";
$theme_width = "846";
$theme_width_l = "160";
$theme_width_r = "160";
function render_header($header_content) {
global $theme_width;
echo "
";
include_once "header.php";
echo " |
\n";
echo "\n\n";
}
function render_footer($license=false) {
global $theme_width,$settings;
echo " \n \n";
echo "
";
include_once "foot.php";
echo " |
|
\n";
}
function render_news($subject, $news, $info) {
echo "\n";
}
function render_article($subject, $article, $info) {
echo "
$subject |
".($info['article_breaks'] == "y" ? nl2br($article) : $article)."
|
|
\n";
}
function opentable($title) {
echo "
$title |
\n";
}
function closetable() {
echo " |
|
\n";
}
function openside($title) {
echo "
|
\n";
}
function closeside() {
echo " |
|
\n";
tablebreak();
}
function opensidex($title,$state="on") {
$boxname = str_replace(" ", "", $title);
echo "
$title |
".panelbutton($state,$boxname)." |
\n";
}
function closesidex() {
echo "
|
|
\n";
tablebreak();
}
function tablebreak() {
echo "\n";
}
?> |