Skip to content

Commit 9c13aa9

Browse files
committed
display current page number without link
1 parent c9c6252 commit 9c13aa9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

templates/molecules/paginator.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
{% for num in page_numbers %}
2020
{% if num == current_page %}
21-
<li class="bw-pagination_circle bw-pagination_selected"><a class="text-white" href="{{ url }}{{ num }}{% if anchor %}#{{anchor}}{% endif %}" title="Page {{ num }}">{{ num }}</a></li>
21+
<li class="bw-pagination_circle bw-pagination_selected">
22+
{{ num }}
23+
</li>
2224
{% else %}
2325
<li><a href="{{ url }}{{ num }}{% if anchor %}#{{anchor}}{% endif %}" title="Page {{ num }}">{{ num }}</a></li>
2426
{% endif %}

0 commit comments

Comments
 (0)