function thesis_framework_full_width() { if (apply_filters('thesis_show_header', true)) { thesis_wrap_header(); } thesis_wrap_content(); if (apply_filters('thesis_show_footer', true)) { thesis_wrap_footer(); } }
function thesis_faux_admin() { global $thesis_design; get_header(apply_filters('thesis_get_header', $name)); if ($thesis_design['layout']['framework'] == 'page' || !$thesis_design['layout']['framework']) { echo '<div id="container">' . "\n"; echo '<div id="page">' . "\n"; thesis_header_area(); thesis_faux_admin_content_area(); thesis_footer_area(); echo '</div>' . "\n"; echo '</div>' . "\n"; } elseif ($thesis_design['layout']['framework'] == 'full-width') { thesis_wrap_header(); echo '<div id="content_area" class="full_width">' . "\n"; echo '<div class="page">' . "\n"; thesis_faux_admin_content_area(); echo '</div>' . "\n"; echo '</div>' . "\n"; thesis_wrap_footer(); } get_footer(apply_filters('thesis_get_footer', $name)); }
function page_header_footer_sidebar_18() { global $thesis_design; echo apply_filters('thesis_doctype', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">') . "\n"; ?> <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?> > <?php thesis_head::build(); echo "<body" . thesis_body_classes() . ">\n"; #filter thesis_hook_before_html(); #hook #thesis_18/lib/html/frameworks.php Line 28 echo "<div id=\"container\">\n"; echo "<div id=\"page\">\n"; thesis_wrap_header(); thesis_wrap_footer(); thesis_ie_clear(); thesis_javascript::output_scripts(); thesis_hook_after_html(); #hook echo "</body>\n</html>"; }
function thesis_framework_full_width() { thesis_wrap_header(); thesis_wrap_content(); thesis_wrap_footer(); }