108 lines
2.7 KiB
PHP
108 lines
2.7 KiB
PHP
<?php
|
|
|
|
class Layout {
|
|
function display_page($page) {
|
|
global $config;
|
|
|
|
$theme_name = $config->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 .= $this->block_to_html($block, true, "left");
|
|
break;
|
|
case "main":
|
|
$main_block_html .= $this->block_to_html($block, false, "main");
|
|
break;
|
|
case "subheading":
|
|
$sub_block_html .= $block->body; // $this->block_to_html($block, true);
|
|
break;
|
|
default:
|
|
print "<p>error: {$block->header} using an unknown section ({$block->section})";
|
|
break;
|
|
}
|
|
}
|
|
|
|
$debug = get_debug_info();
|
|
|
|
$contact = empty($contact_link) ? "" : "<br><a href='mailto:$contact_link'>Contact</a>";
|
|
|
|
if(empty($page->subheading)) {
|
|
$subheading = "";
|
|
}
|
|
else {
|
|
$subheading = "<div id='subtitle'>{$page->subheading}</div>";
|
|
}
|
|
|
|
if($page->left_enabled) {
|
|
$left = "<nav>$left_block_html</nav>";
|
|
$withleft = "withleft";
|
|
}
|
|
else {
|
|
$left = "";
|
|
$withleft = "";
|
|
}
|
|
|
|
print <<<EOD
|
|
<!doctype html>
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
|
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
|
<head>
|
|
<title>{$page->title}</title>
|
|
$header_html
|
|
<script src='$data_href/themes/$theme_name/script.js' type='text/javascript'></script>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>{$page->heading}</h1>
|
|
$subheading
|
|
$sub_block_html
|
|
</header>
|
|
$left
|
|
<article class="$withleft">
|
|
$main_block_html
|
|
</article>
|
|
<footer>
|
|
<hr>
|
|
Images © their respective owners,
|
|
<a href="http://code.shishnet.org/shimmie2/">Shimmie</a> ©
|
|
<a href="http://www.shishnet.org/">Shish</a> &
|
|
<a href="https://github.com/shish/shimmie2/contributors">The Team</a>
|
|
2007-2012,
|
|
based on the Danbooru concept.
|
|
<br>Futaba theme based on 4chan's layout and CSS :3
|
|
$debug
|
|
$contact
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
EOD;
|
|
}
|
|
|
|
function block_to_html($block, $hidable=false, $salt="") {
|
|
$h = $block->header;
|
|
$b = $block->body;
|
|
$i = str_replace(' ', '_', $h) . $salt;
|
|
$html = "<section id='$i'>";
|
|
if(!is_null($h)) $html .= "\n<h3 data-toggle-id='$i' class='shm-toggler'>$h</h3>\n";
|
|
if(!is_null($b)) $html .= "<div class='blockbody'>$b</div>\n";
|
|
$html .= "</section>";
|
|
return $html;
|
|
}
|
|
}
|
|
?>
|