コード例 #1
1
ファイル: wiaw_whitepapers.php プロジェクト: robertok/custom
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));
}
コード例 #2
0
ファイル: frameworks.php プロジェクト: CherylMuniz/fashion
function thesis_wrap_footer()
{
    echo "<div id=\"footer_area\" class=\"full_width\">\n";
    echo "<div class=\"page\">\n";
    thesis_footer_area();
    echo "</div>\n";
    echo "</div>\n";
}
コード例 #3
0
ファイル: frameworks.php プロジェクト: billerby/Surdeg
function thesis_wrap_footer()
{
    echo '<div id="footer_area" class="full_width">' . "\n";
    echo '<div class="page">' . "\n";
    thesis_footer_area();
    echo '</div>' . "\n";
    echo '</div>' . "\n";
}
コード例 #4
0
ファイル: templates.php プロジェクト: billerby/Surdeg
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));
}
コード例 #5
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));
}