Sha256: 67a186d089d5ceda4ae645a565dfa506bfea27fb9dfcf163d9ca60f78cec6306
Contents?: true
Size: 1.09 KB
Versions: 11
Compression:
Stored size: 1.09 KB
Contents
<nav class="my-1" aria-label="Page navigation example"> <ul class="pagination justify-content-center"> {% if paginator.previous_page %} <li class="page-item"><a class="page-link" href="{{ paginator.previous_page_path }}"><span aria-hidden="true">«</span></a></li> {% else %} <li class="page-item disabled"><a class="page-link" href="#"><span aria-hidden="true">«</span></a></li> {% endif %} {% if paginator.page_trail %} {% for trail in paginator.page_trail %} <li {% if page.url == trail.path %}class="page-item active"{% else %}class="page-item"{% endif %}> <a class="page-link" href="{{ trail.path | prepend: site.baseurl }}" title="{{trail.title}}">{{ trail.num }}</a> </li> {% endfor %} {% endif %} {% if paginator.next_page %} <li class="page-item"><a class="page-link" href="{{ paginator.next_page_path }}"><span aria-hidden="true">»</span></a></li> {% else %} <li class="page-item disabled"><a class="page-link" href="#"><span aria-hidden="true">»</span></a></li> {% endif %} </ul> </nav>
Version data entries
11 entries across 11 versions & 1 rubygems