// theme settings
$body_text = "#ffffff";
$body_bg = "#575757";
$theme_width = "981";
$theme_width_l = "170";
$theme_width_r = "170";
function render_header($header_content) {
global $theme_width,$settings;
echo "
|
\n";
}
function render_footer($license=false) {
global $theme_width,$settings;
echo " |
\n";
}
function render_news($subject, $news, $info) {
global $settings;
echo "
".$subject." |
".$news."
|
\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 "
".$title." |
\n";
}
function closeside() {
echo " |
|
\n";
tablebreak();
}
function opensidex($title,$open="on") {
$box_img = ($open=="on" ? "off" : "on");
echo "
".$title." |
\n";
}
function closesidex() {
echo " |
|
\n";
tablebreak();
}
function tablebreak() {
echo "\n";
}
?>