diff options
author | Daan Debie <d.debie@thenewmotion.com> | 2014-08-21 18:45:11 +0200 |
---|---|---|
committer | Daan Debie <d.debie@thenewmotion.com> | 2014-08-21 18:45:11 +0200 |
commit | 352965e0445417584f6c3fb3e8fef5d87db4f37f (patch) | |
tree | db9a4e7f5b760da37c0b506a450ca809496fbcc7 /pelican-bootstrap3/templates/includes/pagination.html | |
parent | a928687830876af8c919606bae47195af65bc82d (diff) | |
download | pelican-themes-352965e0445417584f6c3fb3e8fef5d87db4f37f.tar.gz |
Updated pelican-bootstrap3 to the latest version
Diffstat (limited to 'pelican-bootstrap3/templates/includes/pagination.html')
-rw-r--r-- | pelican-bootstrap3/templates/includes/pagination.html | 54 |
1 files changed, 35 insertions, 19 deletions
diff --git a/pelican-bootstrap3/templates/includes/pagination.html b/pelican-bootstrap3/templates/includes/pagination.html index d34c853..9ae4285 100644 --- a/pelican-bootstrap3/templates/includes/pagination.html +++ b/pelican-bootstrap3/templates/includes/pagination.html @@ -1,21 +1,37 @@ {% if articles_page and articles_paginator.num_pages > 1 %} - <ul class="pagination"> - {% if articles_page.has_previous() %} - {% set num = articles_page.previous_page_number() %} - <li class="prev"><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">«</a> - </li> - {% else %} - <li class="prev disabled"><a href="#">«</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> - {% endfor %} - {% if articles_page.has_next() %} - <li class="next"><a - href="{{ SITEURL }}/{{ articles_next_page.url }}">»</a></li> - {% else %} - <li class="next disabled"><a href="#">»</a></li> - {% endif %} - </ul> + {% if USE_PAGER %} + <ul class="pager"> + {% if articles_page.has_previous() %} + <li class="previous"><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">← Newer</a></li> + {% else %} + <li class="previous disabled"><a href="#">← Newer</a></li> + {% endif %} + {% if articles_page.has_next() %} + <li class="next"><a + href="{{ SITEURL }}/{{ articles_next_page.url }}">Older →</a></li> + {% else %} + <li class="next disabled"><a href="#">Older →</a></li> + {% endif %} + </ul> + {% else %} + <ul class="pagination"> + {% if articles_page.has_previous() %} + {% set num = articles_page.previous_page_number() %} + <li class="prev"><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">«</a> + </li> + {% else %} + <li class="prev disabled"><a href="#">«</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> + {% endfor %} + {% if articles_page.has_next() %} + <li class="next"><a + href="{{ SITEURL }}/{{ articles_next_page.url }}">»</a></li> + {% else %} + <li class="next disabled"><a href="#">»</a></li> + {% endif %} + </ul> + {% endif %} {% endif %}
\ No newline at end of file |