summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2014-01-11 07:55:14 -0800
committerFranck Cuny <franck.cuny@gmail.com>2014-01-11 07:55:14 -0800
commitca0afc346b9ffdd8a3056849328d5f0d7e429dc3 (patch)
tree0e1fda3bd8b88a7fdfcfc90e92763144170c7a08 /_layouts/post.html
parentMove article from drafts to posts. (diff)
downloadlumberjaph-ca0afc346b9ffdd8a3056849328d5f0d7e429dc3.tar.gz
Remove navigation arrows.
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html13
1 files changed, 0 insertions, 13 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 37a7066..a7d2358 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -7,26 +7,13 @@ layout: default
<h1><a href="{{ page.url }}">{{ page.title }}</a></h1>
-{% if page.previous.url %}
- <p id="bigleft"><a href="{{page.previous.url}}">&laquo;</a></p><br />
-{% endif %}
-{% if page.next.url %}
- <p id="bigright"><a href="{{page.next.url}}">&raquo;</a></p>
-{% endif %}
-
<div id="entry">
{{ content }}
<p class="timestamp">
- {% if page.previous.url %}
- <a href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a> |
- {% endif %}
{{ page.date | date_to_string }}
- {% if page.next.url %}
- | <a href="{{page.next.url}}">{{page.next.title}} &raquo;</a>
- {% endif %}
</p>
</div>