General theme: fix style paginator

This commit is contained in:
Jesús
2021-01-01 14:48:42 -05:00
parent 3a83796f91
commit 5a6e247a7f
5 changed files with 17 additions and 13 deletions

View File

@@ -84,7 +84,7 @@
{% for page in range(page_start, page_end+1) %}
{% if page == current_page %}
<div class="page-link is-current">{{ page }}</div>
<a class="page-link is-current">{{ page }}</a>
{% else %}
{# https://stackoverflow.com/questions/36886650/how-to-add-a-new-entry-into-a-dictionary-object-while-using-jinja2 #}
{% set _ = parameters_dictionary.__setitem__('page', page) %}