diff options
author | Jesús <heckyel@hyperbola.info> | 2021-01-01 14:48:42 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-01-01 14:48:42 -0500 |
commit | 5a6e247a7fb989aa9516b6acf4a93e0ce69921c5 (patch) | |
tree | 0821c558f3c8690d60aef93fca4eea063f46ddc9 /youtube/templates/common_elements.html | |
parent | 3a83796f91614e60747c3120e5ec5de9341c7289 (diff) | |
download | yt-local-5a6e247a7fb989aa9516b6acf4a93e0ce69921c5.tar.lz yt-local-5a6e247a7fb989aa9516b6acf4a93e0ce69921c5.tar.xz yt-local-5a6e247a7fb989aa9516b6acf4a93e0ce69921c5.zip |
General theme: fix style paginator
Diffstat (limited to 'youtube/templates/common_elements.html')
-rw-r--r-- | youtube/templates/common_elements.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index 3c36157..56ad727 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -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) %} |