{% if total_pages > 1 %}
  • 1 %}href="{{ pg_url }}?page={{ page - 1 }}&per_page={{ per_page }}"{% endif %} class="button outline small"{% if page <= 1 %} aria-disabled="true"{% endif %}>← {{ t(key="pagination.previous") }}
  • {% set window = 10 %} {% set half = 5 %} {% set_global start = page - half %} {% set_global end = start + window - 1 %} {% if start < 1 %} {% set_global start = 1 %} {% set_global end = window %} {% endif %} {% if end > total_pages %} {% set_global end = total_pages %} {% set_global start = total_pages - window + 1 %} {% if start < 1 %}{% set_global start = 1 %}{% endif %} {% endif %} {% if start > 1 %}
  • 1
  • {% if start > 2 %}
  • ...
  • {% endif %} {% endif %} {% for p in range(start=start, end=end + 1) %} {% if p == page %}
  • {{ p }}
  • {% else %}
  • {{ p }}
  • {% endif %} {% endfor %} {% if end < total_pages %} {% if end < total_pages - 1 %}
  • ...
  • {% endif %}
  • {{ total_pages }}
  • {% endif %}
  • = total_pages %} aria-disabled="true"{% endif %}>{{ t(key="pagination.next") }} →
  • {% endif %}