forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (31 loc) · 937 Bytes
/
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
38
---
layout: default
title: Greg's Safari Njema
---
<div class="posts">
{% for post in paginator.posts %}
<article class="post">
{% include postHeader.html %}
<div class="entry">
{{ post.excerpt }}
</div>
<p class="read-more"><a href="{{ site.baseurl }}{{ post.url }}">[Continue Reading]</a><p>
</article>
{% endfor %}
<div class="footerbar clearfix">
<div class="prev">
{% if paginator.previous_page %}
<a class="arrow" href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Newer</a>
{% else %}
<span class="arrow">« Newer</a>
{% endif %}
</div>
<div class="next">
{% if paginator.next_page %}
<a class="arrow" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older »</a>
{% else %}
<span class="arrow">Older »</a>
{% endif %}
</div>
</div>
</div>