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