<?php 
thematic_abovecontent();
?>
		
			<div id="content">
	
	            <?php 
// displays the page title
thematic_page_title();
// create the navigation above the content
thematic_navigation_above();
// action hook for placing content above the category loop
thematic_above_categoryloop();
// action hook creating the category loop
thematic_categoryloop();
// action hook for placing content below the category loop
thematic_below_categoryloop();
// create the navigation below the content
thematic_navigation_below();
?>
	
			</div><!-- #content -->
			
			<?php 
thematic_belowcontent();
?>
 
			
		</div><!-- #container -->
 function test_thematic_categoryloop()
 {
     $this->expectOutputRegex('/<article id="post/', thematic_categoryloop());
 }
 function test_thematic_categoryloop_xhtml()
 {
     $this->expectOutputRegex('/<div id="post/', thematic_categoryloop());
 }