diff options
Diffstat (limited to 'pelican-bootstrap3/templates/includes/pagination.html')
-rw-r--r-- | pelican-bootstrap3/templates/includes/pagination.html | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pelican-bootstrap3/templates/includes/pagination.html b/pelican-bootstrap3/templates/includes/pagination.html index 2627bb1..9ae4285 100644 --- a/pelican-bootstrap3/templates/includes/pagination.html +++ b/pelican-bootstrap3/templates/includes/pagination.html @@ -23,10 +23,9 @@ <li class="prev disabled"><a href="#">«</a></li> {% endif %} {% for num in range( 1, 1 + articles_paginator.num_pages ) %} - {% set page = articles_paginator.page(num) %} <li class="{{ 'active' if num == articles_page.number else '' }}"><a - href="{{ SITEURL }}/{{ page.url }}">{{ num }}</a></li> - {% endfor %} + 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> @@ -35,4 +34,4 @@ {% endif %} </ul> {% endif %} -{% endif %} +{% endif %}
\ No newline at end of file |