forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 754 Bytes
/
index.html
File metadata and controls
29 lines (24 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
23
24
25
26
27
28
29
---
layout: default
---
<div class="posts">
{% for post in paginator.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.excerpt }}
</div>
</article>
{% endfor %}
</div>
<div class="pager">
{% if paginator.previous_page %}
<a href="{{ BASE_PATH }}{{ paginator.previous_page_path }}" class="fa fa-chevron-left prev"
title="Previous">Previous</a>
{% endif %}
<span class="count">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ BASE_PATH }}{{ paginator.next_page_path }}" class="fa fa-chevron-right next"
title="Next">Next</a>
{% endif %}
</div>