Explicit commit v2

This commit is contained in:
2018-06-18 10:11:50 -04:00
parent 7cffe3b553
commit 5fbb8492d6
216 changed files with 11046 additions and 17366 deletions

View File

@@ -0,0 +1,15 @@
<nav class="pagination" role="navigation">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a rel="prev" class="posts newer btn small" href="{{ site.baseurl }}/#blog" title="Previous Page">← Newer Posts</a>
{% else %}
<a rel="prev" class="posts newer btn small" href="{{ site.baseurl }}/page{{ paginator.previous_page }}/">← Newer Posts</a>
{% endif %}
{% endif %}
<span class="pagination__page-number">Page {{ paginator.page}} of {{ paginator.total_pages}}</span>
{% if paginator.next_page %}
<a rel="next" class="posts older btn small" href="{{ site.baseurl }}/page{{ paginator.next_page }}/">Older Posts →</a>
{% endif %}
</nav>