diff options
author | Ben Burwell <ben@benburwell.com> | 2014-12-22 21:15:33 -0500 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2014-12-22 21:15:33 -0500 |
commit | a1d227aac979416ae4368a715b2bec983be65cca (patch) | |
tree | 8c9eb1df11b67dd7875dc6e52afbba301073ac65 /_layouts/post.html | |
parent | 6fa536f3268bf7bd4fd85df7fa78fbc4c67eaaa1 (diff) |
Removed next and previous post links
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 53a4999..be602fb 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -10,22 +10,4 @@ layout: master {{ content }} - {% if page.previous %} - <div class="grid_half"> - <div class="arrow">←</div> - <div><a class="post" href="{{ page.previous.url }}">{{ page.previous.title }}</a></div> - </div> - {% endif %} - - {% if page.next %} - <div class="grid_half right"> - <div class="arrow">→</div> - <div><a class="post" href="{{ page.next.url }}">{{ page.next.title }}</a></div> - </div> - {% endif %} - - {% for post in site.related_posts limit:3 %} - <a href="{{post.url}}">{{post.title}}</a> - {% endfor %} - </section> |