summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2014-12-22 21:15:33 -0500
committerBen Burwell <ben@benburwell.com>2014-12-22 21:15:33 -0500
commita1d227aac979416ae4368a715b2bec983be65cca (patch)
tree8c9eb1df11b67dd7875dc6e52afbba301073ac65 /_layouts
parent6fa536f3268bf7bd4fd85df7fa78fbc4c67eaaa1 (diff)
Removed next and previous post links
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/post.html18
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">&larr;</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">&rarr;</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>