diff options
-rw-r--r-- | _layouts/post.html | 5 |
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…</p> --> {% for post in site.related_posts limit:3 %} <p class="sans"><a href="{{ post.url }}">{{ post.title }}</a></p> {% endfor %} |