summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-05-11 16:48:42 -0400
committerBen Burwell <ben@benburwell.com>2015-05-11 16:48:42 -0400
commit40cd012ea940a2bb4f2425e1a988ecc3bd620854 (patch)
tree18537f4cb364ddfeb33307a25cf965f6d043f3a5 /_layouts
parent5a20dd4bcc64158c261e62a54fda8cc85bbd3dc9 (diff)
Rename links to Older/Newer (from Prev/Next)
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/post.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 1ff0a3e..9cf26f0 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -17,19 +17,18 @@ layout: master
<div class="split">
{% if page.previous %}
<div class="left align-left sans">
- <a href="{{ page.previous.url }}"><i class="fa fa-chevron-left"></i> Previous Post</a>
+ <a href="{{ page.previous.url }}"><i class="fa fa-chevron-left"></i> Older Post</a>
</div>
{% endif %}
{% if page.next %}
<div class="right align-right sans">
- <a href="{{ page.next.url }}">Next Post <i class="fa fa-chevron-right"></i></a>
+ <a href="{{ page.next.url }}">Newer Post <i class="fa fa-chevron-right"></i></a>
</div>
{% endif %}
</div>
<div class="center">
- <!-- <p>you may also enjoy&hellip;</p> -->
{% for post in site.related_posts limit:3 %}
<p class="sans"><a href="{{ post.url }}">{{ post.title }}</a></p>
{% endfor %}