-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (45 loc) · 1.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: home
---
<section id="bricks">
<div class="row masonry">
<!-- brick-wrapper -->
<div class="bricks-wrapper">
<div class="grid-sizer"></div>
<!-- slide -->
{% include slide.html %}
<!-- posts -->
{% include posts.html %}
</div>
</div>
<div class="row">
<nav class="pagination">
{% if paginator.total_pages > 1 %}
{% if paginator.previous_page %}
<a class="page-numbers prev"
href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a>
{% else %}
<span class="page-numbers prev inactive">« Prev</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span class="page-numbers current">{{page}}</span>
{% elsif page == 1 %}
<a class="page-numbers"
href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a>
{% else %}
<a class="page-numbers"
href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{
page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a class="page-numbers next"
href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next »</a>
{% else %}
<span class="page-numbers next inactive">Next »</span>
{% endif %}
{% endif %}
</nav>
</div>
</section>