I'm trying to use the next_posts_link to navigate through pages of posts, but the link it creates (domain/category/newsletter/page/2) leads to a blank page.
What does this /page/# actually do? Do I need some standard template or something to make it work?
This is what I'm trying:
<?php query_posts('category_name=newsletter&posts_per_page=2'); ?>
<?php while(have_posts()): the_post(); ?>
<!-- some stuff with the posts -->
<? endwhile; ?>
<?php next_posts_link('« Older Entries') ?>
<?php previous_posts_link('Newer Entries »') ?>