Not sure if this is what you’ve asked for but If you want to create a blog/news page. Try creating another page template and name it news, which consists of a list of post in a defined category such as:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postsingle" id="post-<?php the_ID(); ?>">
<div class="entry">
<?php $recent = new WP_Query("cat=95"); while($recent->have_posts()) : $recent->the_post();?>
<!-- -->
<?php the_content(); ?>
<!-- -->
<?php endwhile; ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
add whatever content you want to display between <!– –> such as page title, content etc, then a link to the post.