forked from skybet/skybet.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.28 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
---
layout: page
summary: We bring the excitement of Sports Betting, Casino Games, Poker and Bingo to millions of customers as a modern, technology-led company working across a range of cutting-edge technologies.
nav: false
nav_title: Articles
nav_weight: 0
---
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
{% include postSummary.html fullSummary=true %}
{% endfor %}
<!-- Pagination links -->
<div class="pagination">
<div class="flex flex--center">
<div class="flex-item text--left">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="btn btn--primary">Previous</a>
{% else %}
<a class="btn btn--primary btn--disabled ">Previous</a>
{% endif %}
</div>
<div class="flex-item text--center">
<span class="page_number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
</div>
<div class="flex-item text--right">
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="btn btn--primary">Next</a>
{% else %}
<a class="btn btn--primary btn--disabled ">Next</a>
{% endif %}
</div>
</div>
</div>