-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·20 lines (20 loc) · 946 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: default
---
<main class="content fade-in-down delay-0_75s">
<div class="inner">
{% include loop.html %}
{% if paginator.total_pages > 1 %}
<nav class="pagination">
<h2 class="screen-reader-text">Posts navigation</h2>
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="newer-posts"><i class="fa fa-angle-left" aria-hidden="true"></i> Newer Posts</a>
{% endif %}
<span class="page-number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="older-posts">Older Posts <i class="fa fa-angle-right" aria-hidden="true"></i></a>
{% endif %}
</nav><!-- .pagination -->
{% endif %}
</div><!-- .inner -->
</main><!-- .content -->