<?php
if ( ! have_posts() ):
locate_template( array( CFSROOT . 'com/post-notfound.php' ), true, false );
else:
global $cglobal;
if( $cglobal['theme_options']['cpost_style'] == "excerpt" ):
locate_template( array( CFSROOT . 'com/post-excerpt.php' ), true, false );
else:
locate_template( array( CFSROOT . 'com/post-content.php' ), true, false );
endif;
endif;
?>