-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (20 loc) · 754 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (20 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
title: Home
---
{% for post in paginator.posts %}
{% include featured-post.html %}
{% endfor %}
<!-- Pagination links -->
<div class="pagination">
{% if paginator.next_page %}
<a class="pagination-button pagination-active next" href="{{ site.github.url }}{{ paginator.next_page_path }}">{{ site.pagination.previous_page }}</a>
{% else %}
<span class="pagination-button">{{ site.pagination.previous_page }}</span>
{% endif %}
{% if paginator.previous_page %}
<a class="pagination-button pagination-active" href="{{ site.baseurl }}{{ paginator.previous_page_path }}">{{ site.pagination.next_page }}</a>
{% else %}
<span class="pagination-button">{{ site.pagination.next_page }}</span>
{% endif %}
</div>