File: /home/mmickelson/theflexguy.com/wp-content/themes/thematic/template-page-fullwidth.php
<?php
/**
* Template Name: Full Width
*
* This Full Width template removes the primary and secondary asides so that content
* can be displayed the entire width of the #content area.
*
* @package Thematic
* @subpackage Templates
*/
// calling the header.php
get_header();
// action hook for placing content above #container
thematic_abovecontainer();
?>
<div id="container">
<?php
// action hook for inserting content above #content
thematic_abovecontent();
// filter for manipulating the element that wraps the content
echo apply_filters( 'thematic_open_id_content', '<div id="content">' . "\n\n" );
// calling the widget area 'page-top'
get_sidebar('page-top');
// start the loop
while ( have_posts() ) : the_post();
// action hook for inserting content above #post
thematic_abovepost();
?>
<?php
echo '<div id="post-' . get_the_ID() . '" ';
// Checking for defined constant to enable Thematic's post classes
if ( ! ( THEMATIC_COMPATIBLE_POST_CLASS ) ) {
post_class();
echo '>';
} else {
echo 'class="';
thematic_post_class();
echo '">';
}
// creating the post header
thematic_postheader();
?>
<div class="entry-content">
<?php
the_content();
wp_link_pages( "\t\t\t\t\t<div class='page-link'>" . __( 'Pages: ', 'thematic' ), "</div>\n", 'number' );
edit_post_link( __( 'Edit', 'thematic' ), '<span class="edit-link">','</span>' );
?>
</div>
</div><!-- .post -->
<?php
// calls the do_action for inserting content below #post
thematic_belowpost();
// action hook for calling the comments_template
thematic_comments_template();
// end loop
endwhile;
// calling the widget area 'page-bottom'
get_sidebar( 'page-bottom' );
?>
</div><!-- #content -->
<?php
// action hook for inserting content below #content
thematic_belowcontent();
?>
</div><!-- #container -->
<?php
// action hook for placing content below #container
thematic_belowcontainer();
// calling footer.php
get_footer();
?>