-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 1.06 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 1.06 KB
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: default
title: Posts & Thoughts
description: Thoughts on Islam and Technology
---
{% assign posts_per_page = 3 %}
{% assign current_page = paginator.page | default: 1 %}
{% for post in paginator.posts %}
{% assign index = paginator.per_page | times: paginator.page | minus: paginator.per_page | plus: forloop.index %}
{% include blog-card.html post=post index=index %}
{% endfor %}
{% if paginator.total_pages > 1 %}
<div style="
display: flex;
justify-content: space-between;
margin-top: 24px;
">
{% if paginator.previous_page %}
<a
href="{{ paginator.previous_page_path | prepend: site.baseurl }}"
style="
color: #828282;
text-decoration: none;
font-size: 12px;
"
>
← Back
</a>
{% else %}
<div></div>
{% endif %}
{% if paginator.next_page %}
<a
href="{{ paginator.next_page_path | prepend: site.baseurl }}"
style="
color: #828282;
text-decoration: none;
font-size: 12px;
"
>
Next →
</a>
{% endif %}
</div>
{% endif %}