diff options
author | Ben Burwell <ben@benburwell.com> | 2015-05-11 16:59:21 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-05-11 16:59:21 -0400 |
commit | ea2ce92242db58fdbf0319192deb2821eef74a06 (patch) | |
tree | 8abffb4d4a9517431c6516cdab641b3294998690 /_layouts/post.html | |
parent | de8f745817684a3cccbdaa0c17286792f07cbd24 (diff) | |
parent | 4ead5d2173d31e914ae7434872270d18c23f2cbf (diff) |
Merge pull request #4 from benburwell/updates
Updates
Diffstat (limited to '_layouts/post.html')
-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 %} |