A boolean variable that is true if there are previous or next pages for the current photo album.



Example
The code below is a simplified version of what's in the default category template. It causes links for the previous and next pages to appear if either exist.

{{if category_breadcrumbs}}

{{if category.prev_articles_url}}
<a href="{{category.prev_articles_url}}">{{category.prev_articles_text}}</a>
{{/if}}

{{if category.next_articles_url}}
<a href="{{category.next_articles_url}}">{{category.next_articles_text}}</a>
{{/if}}

{{/if}}