If you want to create a custom page template for your blog posts, you can use this query so the pagination still works:
<?php query_posts( array( 'paged' => get_query_var('paged') ) ); ?>
In the bottom of the page, reset the query:
<?php wp_reset_query(); ?>

