Setting up a page to house certain types of posts

Create you own WP_query running on this post type out side the main loop.

$args = array('post_type' => 'cpt_name');
$cptq = new WP_query($args);
if($cptq->have_posts()):
while($cptq->have_posts()):$cptq->the_post();

the_title();

endwhile;
wp_reset_query();
endif;