Sha256: b59305af5c01735080784849cb9d78c2ea1ce9dc0914d06f98cfd245f6ccf5bc
Contents?: true
Size: 749 Bytes
Versions: 4
Compression:
Stored size: 749 Bytes
Contents
<!-- copy/paste from: http://jekyllrb.com/docs/pagination/#render-the-paginated-posts --> <div class="wrapper"> <div class="pagination-pages"> {% if paginator.previous_page %} <a class="previous-pages" href="{{ paginator.previous_page_path | prepend: site.baseurl }}" title="Previous">« Previous</a> {% else %} <span class="previous-pages">« Previous</span> {% endif %} <span class="page-number">{{ paginator.page }} of {{ paginator.total_pages }}</span> {% if paginator.next_page %} <a class="next-pages" href="{{ paginator.next_page_path | prepend: site.baseurl }}" title="Next">Next »</a> {% else %} <span class="next-pages">Next »</span> {% endif %} </div> </div>
Version data entries
4 entries across 4 versions & 1 rubygems