Remove WITH_PAGINATION, only have a DEFAULT_PAGINATION setting

DEFAULT_PAGINATION can be set to False instead of using WITH_PAGINATION
This commit is contained in:
Kyle Fuller 2011-12-22 13:56:36 +00:00
commit 2be58aa51a
5 changed files with 10 additions and 11 deletions

View file

@ -1,4 +1,4 @@
{% if WITH_PAGINATION %}
{% if DEFAULT_PAGINATION %}
<p class="paginator">
{% if articles_page.has_previous() %}
{% if articles_page.previous_page_number() == 1 %}
@ -12,4 +12,4 @@
<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">&raquo;</a>
{% endif %}
</p>
{% endif %}
{% endif %}