Beispiel #1
1
function whitepaper_template()
{
    remove_action('thesis_hook_header', 'thesis_default_header');
    add_action('thesis_hook_header', 'thesis_whitepaper_header');
    get_header(apply_filters('thesis_get_header', $name));
    echo '<div id="container">' . "\n";
    echo '<div id="page">' . "\n";
    thesis_header_area();
    echo '	<div id="content_box">' . "\n";
    thesis_content_column();
    echo '		<div id="sidebars">' . "\n";
    echo '			<div id="sidebar_5 class="sidebar">' . "\n";
    echo '				<ul class="sidebar_list">' . "\n";
    dynamic_sidebar(5);
    echo '				</ul>' . "\n";
    echo '			</div>' . "\n";
    // sidebar_5
    echo '		</div>' . "\n";
    // //sidebars
    echo '	</div>' . "\n";
    // content_box
    thesis_footer_area();
    echo '</div>' . "\n";
    //page
    echo '</div>' . "\n";
    //container
    get_footer(apply_filters('thesis_get_footer', $name));
}
Beispiel #2
0
/**
 * Display first sidebar and content column for three-column layouts.
 */
function thesis_wrap_columns()
{
    echo "\t\t<div id=\"column_wrap\">\n";
    thesis_content_column();
    thesis_get_sidebar();
    echo "\t\t</div>\n";
}
Beispiel #3
0
/**
 * Display first sidebar and content column for three-column layouts.
 */
function thesis_wrap_columns()
{
    echo '		<div id="column_wrap">' . "\n";
    thesis_content_column();
    thesis_get_sidebar();
    echo '		</div>' . "\n";
}
Beispiel #4
0
function page_hrecipe_18()
{
    get_header(apply_filters('thesis_get_header', $name));
    echo '<div id="container">' . "\n";
    echo '<div id="page">' . "\n";
    thesis_header_area();
    echo '	<div id="content_box">' . "\n";
    thesis_content_column();
    echo '		<div id="sidebars">' . "\n";
    echo '			<div id="sidebar_3" class="sidebar">' . "\n";
    echo '				<ul class="sidebar_list">' . "\n";
    dynamic_sidebar('hRecipe Sidebar');
    echo '				</ul>' . "\n";
    echo '			</div>' . "\n";
    echo '		</div>' . "\n";
    echo '	</div><!--content_box-->' . "\n";
    thesis_footer_area();
    echo '</div><!--page-->' . "\n";
    echo '</div><!--container-->' . "\n";
    get_footer(apply_filters('thesis_get_footer', $name));
}