Initial update to be compatible with Jekyll 2

This commit is contained in:
Brandon Mathis 2014-06-21 10:34:55 -05:00
parent 695fe922a9
commit 52f9119645
11 changed files with 79 additions and 711 deletions

View file

@ -12,11 +12,11 @@ layout: default
{% endfor %}
<div class="pagination">
{% if paginator.next_page %}
<a class="prev" href="{{paginator.next_page}}">&larr; Older</a>
<a class="prev" href="{{paginator.next_page_path}}">&larr; Older</a>
{% endif %}
<a href="/blog/archives">Blog Archives</a>
{% if paginator.previous_page %}
<a class="next" href="{{paginator.previous_page}}">Newer &rarr;</a>
<a class="next" href="{{paginator.previous_page_path}}">Newer &rarr;</a>
{% endif %}
</div>
</div>