get_string('theme', 'default'); $data_href = get_base_href(); $contact_link = $config->get_string('contact_link'); $header_html = ""; ksort($page->html_headers); foreach($page->html_headers as $line) { $header_html .= "\t\t$line\n"; } $left_block_html = ""; $main_block_html = ""; $sub_block_html = ""; foreach($page->blocks as $block) { switch($block->section) { case "left": $left_block_html .= $block->get_html(true); break; case "main": $main_block_html .= $block->get_html(false); break; case "subheading": $sub_block_html .= $block->body; // $this->block_to_html($block, true); break; default: print "

error: {$block->header} using an unknown section ({$block->section})"; break; } } $debug = get_debug_info(); $contact = empty($contact_link) ? "" : "
Contact"; if(empty($page->subheading)) { $subheading = ""; } else { $subheading = "

{$page->subheading}
"; } if($page->left_enabled) { $left = ""; $withleft = "withleft"; } else { $left = ""; $withleft = ""; } print << {$page->title} $header_html

{$page->heading}

$subheading $sub_block_html
$left
$main_block_html
EOD; } } ?>