Created
December 26, 2013 18:41
-
-
Save mavimo/8137230 to your computer and use it in GitHub Desktop.
This file contains 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 | |
title: Projects | |
generator: pagination | |
pagination: | |
max_per_page: 3 | |
provider: projects | |
use: | |
- projects | |
--- | |
<h2>Projects</h2> | |
<ul> | |
{% for project in page.pagination.items %} | |
<li><a href="{{ site.url }}{{ project.url }}">{{ project.title }}</a></li> | |
{% endfor %} | |
</ul> | |
{% include 'pager.html' with {'next' : 'Next Project', 'prev' : 'Previous Project'} %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment