Hi,
I don’t know exactly what the problem is with your template but the way I used Easy Posts was to display the list on a template page which I created like :
<?php
/*
Template Name: NewType
*/
?>
<?php get_header() ?>
<div id="page">
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php global $wp_query;
$page_num = $paged;
if($pagenum='') $pagenum=1;
$wp_query = new WP_Query("showposts=10&post_type=webinteractive&post_status=publish&paged=".$page_num);
while ($wp_query->have_posts()) : $wp_query->the_post();
echo '<h1 class="entry-title">';
the_title();
echo '</h1>';
endwhile; ?>
<div class="navigation"><p><?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div id="nav-below" class="navigation">
<center><?php wp_pagenavi(); ?></center>
</div><!-- #nav-below -->
<?php endif; ?></p></div></div>
</div><!-- #container -->
<?php get_footer() ?>
This is not the exact one I used but you can get the idea and when the link was clicked, the single-newtype.php was called to display the post.
<?php get_header() ?>
<div id="page">
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php the_content(); ?>
</div>
</div>
<?php get_footer() ?>