I'm creating a single post per page tumblr template with the body content as the link to the next page - you can see a quick test working here:
There are 4 entries but the 4th doesn't render, probably because there is no 'NextPage'. Any idea how I might get around that to render the last page? or if it is has to be blank how to render a bit of static text.
{block:Text}
<div class="content">
{block:Pagination}
{block:NextPage}
<a href="{NextPage}">{Body}</a>
{/block:NextPage}
{/block:Pagination}
</div>
{/block:Text}