diff options
author | Michael Diamond <dimo414@gmail.com> | 2015-07-26 15:58:35 -0400 |
---|---|---|
committer | Michael Diamond <diamondm@google.com> | 2015-07-28 12:41:01 -0400 |
commit | 113720080d38cb2f680288bbd7826b1b5d33877a (patch) | |
tree | 4e3dbe8500982a31510a7af5ef9fa3fa52cbdf99 /built-texts | |
parent | 00c6ec878747dab1eef26f16f62a1201fc61eb97 (diff) | |
download | pelican-themes-113720080d38cb2f680288bbd7826b1b5d33877a.tar.gz |
Updated pagination of built-texts template
Diffstat (limited to 'built-texts')
-rw-r--r-- | built-texts/templates/pagination.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/built-texts/templates/pagination.html b/built-texts/templates/pagination.html index 6783ae5..d8bd2e9 100644 --- a/built-texts/templates/pagination.html +++ b/built-texts/templates/pagination.html @@ -1,21 +1,22 @@ +{% if DEFAULT_PAGINATION %} <div class="pagination"> <ul> {% if articles_page.has_previous() %} -{% set num = articles_page.previous_page_number() %} - <li class="prev"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">← Previous</a></li> + <li class="prev"><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">← Previous</a></li> {% else %} <li class="prev disabled"><a href="#">← Previous</a></li> {% endif %} {% for num in range( 1, 1 + articles_paginator.num_pages ) %} - <li class="{{ 'active' if num == articles_page.number else '' }}"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">{{ num }}</a></li> + <li class="{{ 'active' if num == articles_page.number else '' }}"><a href="{{ SITEURL }}/{{ articles_paginator.page(num).url }}">{{ num }}</a></li> {% endfor %} {% if articles_page.has_next() %} - <li class="next"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">Next →</a></li> + <li class="next"><a href="{{ SITEURL }}/{{ articles_next_page.url }}">Next →</a></li> {% else %} <li class="next disabled"><a href="#">→ Next</a></li> {% endif %} </ul> </div> +{% endif %} |