{# Pagination's aria-labels should NOT be translated! #}
    {% for item in shop_pagination %} {% if item.S_IS_PREV or (not item.S_IS_PREV and loop.first) %}
  • {{ lang('PREVIOUS') }}
  • {% endif %} {% if item.S_IS_ELLIPSIS %}
  • {{ lang('ELLIPSIS') }}
  • {% elseif item.S_IS_CURRENT %}
  • {{ item.PAGE_NUMBER }}
  • {% elseif not item.S_IS_PREV and not item.S_IS_NEXT %}
  • {{ item.PAGE_NUMBER }}
  • {% endif %} {% if item.S_IS_NEXT or (not item.S_IS_NEXT and loop.last) %}
  • {{ lang('NEXT') }}
  • {% endif %} {% endfor %}