{% set cur_page = page / limit %}
    {% set num_pages = count / limit %}
    
Page {{1 + cur_page}} of {{1 + num_pages}}
    
      {% if num_pages and cur_page > 0 %}
        
← Prev
      {% endif %}
      {% if num_pages and cur_page < num_pages %}
      
Next →
      {% endif %}