aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html14
1 files changed, 9 insertions, 5 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index dc71866..2eaedf4 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -30,9 +30,13 @@ layout: base
{{ content }}
</div>
- {%- if site.disqus.shortname -%}
- {%- include disqus_comments.html -%}
- {%- endif -%}
-
- <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
+ <div>
+ <hr style="margin:40px auto;width:65%;">
+ {% if page.previous.url %}
+ <a class="prev" href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a>
+ {% endif %}
+ {% if page.next.url %}
+ <a class="next" href="{{page.next.url}}">{{page.next.title}} &raquo;</a>
+ {% endif %}
+ </div>
</article>