Initial commits and git hooks

This commit is contained in:
2018-06-18 17:49:35 -04:00
parent 211490ae47
commit 6078d6fd3a
283 changed files with 14994 additions and 8407 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>