Skip to content

Instantly share code, notes, and snippets.

@hakanensari
Forked from edavis10/_config.yml
Created October 20, 2011 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hakanensari/1302601 to your computer and use it in GitHub Desktop.
Save hakanensari/1302601 to your computer and use it in GitHub Desktop.
Pagination in Jekyll
# ....other stuff here
paginate: 10
{% for page in paginator.posts %}
{% include single_page.html %}
{% endfor %}
<h2 class="title"><a href="{{ page.url }}">{{ page.title }}</a></h2>
<div class="post post-{{ page.id }}">
<p class="author">
Added by {{ page.author }}
on {{ page.date | date: '%B %d, %Y' }}
in {% for category in page.categories %}
<a href="/{{category | downcase}}.html">{{category}}</a>
{% endfor %}
</p>
<hr />
<div class="entrybody">
{{ page.content }}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment