Created
May 5, 2015 01:13
-
-
Save kamatari/1555683136e8a96f9869 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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