Sha256: 532882238708ffc9ef834ffa1718f67a74d2f36709921ae1f7d22ebb6de40f22

Contents?: true

Size: 952 Bytes

Versions: 1

Compression:

Stored size: 952 Bytes

Contents

<h2>{{ page.title }}</h2>

{%-assign nextPage = site.paginate_path | replace: ':num', '2' -%}

{%
  include archive_list.html
  collection=paginator.posts
  limit=site.paginate
-%}

 

{{ content }}
 
 
<div class="pagebar">

  {% if paginator.previous_page %}
  <a href="{{ paginator.previous_page_path  | relative_url}}" class="previous">
    {{ site.theme_config.previous_page_title | default: "Previous" }} 
  </a>
  {% else %}
  <span class="previous">
    {{ site.theme_config.previous_page_title | default: "Previous" }} 
  </span>
  {% endif %}
  <span class="page_number "> 
    {{ paginator.page }}/{{ paginator.total_pages }}
  </span>
  {% if paginator.next_page %}
  <a href="{{ paginator.next_page_path | relative_url }}" class="next">
    {{ site.theme_config.next_page_title | default: "Next" }} 
  </a>
  {% else %}
  <span class="next ">
    {{ site.theme_config.next_page_title | default: "Next" }} 
  </span>
  {% endif %}
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-zeta-0.3.2 _includes/paginate.html