-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 1.15 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
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: default
---
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
<span class="postdate">{{ post.date | preserve_timezones }}</span> • <span class="author"><a href="{{ site.url }}{{ site.baseurl }}/{{ post.categories.first }}"><b>{{ post.categories.first | upcase }}</b></a></span>
<h3><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
{% endfor %}
<!-- Pagination links -->
<div class="pagination" style="color:gray; font-weight:bold">
{% if paginator.previous_page %}
<a href="{{ site.url }}{{ site.baseurl }}{{ paginator.previous_page_path }}" class="previous">Previous</a>
{% else %}
<span class="previous">Previous</span>
{% endif %}
<span class="page_number">• Page {{ paginator.page }} of {{ paginator.total_pages }} •</span>
{% if paginator.next_page %}
<a href="{{ site.url }}{{ site.baseurl }}{{ paginator.next_page_path }}" class="next">Next</a>
{% else %}
<span class="next">Next</span>
{% endif %}
</div>