Skip to content

Instantly share code, notes, and snippets.

@edavis10
Created November 6, 2009 02:18
  • Star 19 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save edavis10/227621 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>
@incompl
Copy link

incompl commented May 8, 2012

Would be useful to show next / previous links in this example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment