Skip to content

Instantly share code, notes, and snippets.

@kamatari
Created May 5, 2015 01:13
Show Gist options
  • Save kamatari/1555683136e8a96f9869 to your computer and use it in GitHub Desktop.
Save kamatari/1555683136e8a96f9869 to your computer and use it in GitHub Desktop.
---
layout: default
---
{% assign index = true %}
{% for post in paginator.posts %}
{% assign content = post.content %}
<article class="post">{% include article.html %}</article>
{% endfor %}
<nav id="pagenavi">
{% if paginator.previous_page %}
<a href="{{paginator.previous_page}}" class="prev">Previous</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{paginator.next_page}}" class="next">Next</a>
{% endif %}
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment