aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-01-01 14:48:42 -0500
committerJesús <heckyel@hyperbola.info>2021-01-01 14:48:42 -0500
commit5a6e247a7fb989aa9516b6acf4a93e0ce69921c5 (patch)
tree0821c558f3c8690d60aef93fca4eea063f46ddc9 /youtube/templates
parent3a83796f91614e60747c3120e5ec5de9341c7289 (diff)
downloadyt-local-5a6e247a7fb989aa9516b6acf4a93e0ce69921c5.tar.lz
yt-local-5a6e247a7fb989aa9516b6acf4a93e0ce69921c5.tar.xz
yt-local-5a6e247a7fb989aa9516b6acf4a93e0ce69921c5.zip
General theme: fix style paginator
Diffstat (limited to 'youtube/templates')
-rw-r--r--youtube/templates/common_elements.html2
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) %}