Hi,
Do you mean display your custom post type?
<?php $loop = new WP_Query( array( 'post_type' => 'custom_post_type', 'posts_per_page' => -1 ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
This will display all the posts for custom_post_type.
Is this what you wanted?