Sha256: 0398eec1e69ebf185fecf996267d033a17dae962120d1c876354757a286b6251
Contents?: true
Size: 886 Bytes
Versions: 5
Compression:
Stored size: 886 Bytes
Contents
{% if paginator.total_pages > 1 %} <ul class="pagination d-flex flex-row justify-content-evenly pt-3"> {% if paginator.previous_page %} <li class="ms-3 me-3 me-auto"> <a class="pagination-nav text-black" href="{{ paginator.previous_page_path }}">Newer</a> </li> {% endif %} {% if paginator.next_page %} <li class="ms-3 me-3 ms-auto"> <a class="pagination-nav text-black" href="{{ paginator.next_page_path }}">Older</a> </li> {% endif %} </ul> {% endif %} {% if paginator.page_trail %} <ul class="pagination d-flex justify-content-evenly pt-3"> {% for trail in paginator.page_trail %} <li class="ms-3 me-3 {% if page.url == trail.path %}selected font-weight-bold border-bottom border-dark{% endif %}"> <a class="pagination-nav text-black" href="{{ trail.path }}" title="{{trail.title}}">{{ trail.num }}</a> </li> {% endfor %} </ul> {% endif %}
Version data entries
5 entries across 5 versions & 1 rubygems