The pagination numbers at the bottom of every collection do not emphasize the current page number of that collection.
My store currently uses the Testament theme, how can I bold the number of the current page?
{{ 'general.pagination.showing_items' | t }} {{ paginate.current_offset | plus: 1 }}-{% if paginate.next %}{{ paginate.current_offset | plus: paginate.page_size }}{% else %}{{ paginate.items }}{% endif %} {{ 'general.pagination.of' | t }} {{ paginate.items }}.
{% if paginate.previous %}
{% render 'snip-icons',
wrapper: '.pagination',
type: 'apollo',
icon: 'left-carrot',
classes: 'pagination--icon vib-center',
size: '10px',
fill: 'var(--link-color)',
hover: 'var(--link-color)' %}
{% endif %}
{% for part in paginate.parts %}
{% if part.is_link %}
{{ part.title | link_to: part.url }}
{% else %}
{% if part.title == '…' %}
{{ part.title }}
{% else %}
{{ part.title }}
{% endif %}
{% endif %}
{% endfor %}
{% if paginate.next %}
{% render 'snip-icons',
wrapper: '.pagination',
type: 'apollo',
icon: 'right-carrot',
classes: 'pagination--icon vib-center',
size: '10px',
fill: 'var(--link-color)',
hover: 'var(--link-color)' %}
{% endif %}
