Use of the {paginate} tag works… but it gums up the ability to get certain articles out of a weblog…
e.g. with pagination, you might end up with links like this:
mydomain.com/index.php/articles/P10/But that creates a problem when you want to get to specific weblog entries via the segment_2…
mydomain.com/index.php/articles/a_specific_article/
You can’t just do this because it won’t know the difference between the above 2 urls… say you’ve got this in your article/index template:
{if segment_2}
{embed="article/show_specific_article"}
{if:else}
{embed="article/view_all_with_pagination"}
{/if}