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">&laquo; Previous</a>
    {% else %}
      <span class="previous-pages">&laquo; 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 &raquo;</a>
    {% else %}
      <span class="next-pages">Next &raquo;</span>
    {% endif %}
  </div>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
writers-zone-0.1.5 _includes/pagination/pages.html
writers-zone-0.1.4 _includes/pagination/pages.html
writers-zone-0.1.3 _includes/pagination/pages.html
writers-zone-0.1.2 _includes/pagination/pages.html