Sha256: f1ebfec36256dd7b0c7f2112838cebf2fecd907c5f8ef0c4702c1b20b620a7b7

Contents?: true

Size: 754 Bytes

Versions: 7

Compression:

Stored size: 754 Bytes

Contents

{% for post in paginator.posts %}
  {% include entry.html %}
{% endfor %}

<!-- Pagination links -->
<nav class="pager">
  <ul>
    <!-- Page: {{ paginator.page }} of {{ paginator.total_pages }} -->
    {% if paginator.previous_page %}
      <li><a href="{{ paginator.previous_page_path | relative_url }}" class="previous"><span class="icon icon--arrow-right">{% include icon-arrow-left.svg %}</span> {{ site.data.theme.t.newer | default: 'Newer' }}</a></li>
    {% endif %}
    {% if paginator.next_page %}
      <li><a href="{{ paginator.next_page_path | relative_url }}" class="next">{{ site.data.theme.t.older | default: 'Older' }} <span class="icon icon--arrow-right">{% include icon-arrow-right.svg %}</span></a></li>
    {% endif %}
  </ul>
</nav>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jekyll-theme-basically-basic-1.4.5 _includes/posts-paginated.html
jekyll-theme-basically-basic-1.4.4 _includes/posts-paginated.html
jekyll-theme-basically-basic-1.4.3 _includes/posts-paginated.html
jekyll-theme-basically-basic-1.4.2 _includes/posts-paginated.html
jekyll-theme-basically-basic-1.4.1 _includes/posts-paginated.html
jekyll-theme-basically-basic-1.4.0 _includes/posts-paginated.html
jekyll-theme-basically-basic-1.0.0 _includes/posts-paginated.html