diff --git a/_includes/layouts/post.njk b/_includes/layouts/post.njk
index 4ab0793..2c046b3 100644
--- a/_includes/layouts/post.njk
+++ b/_includes/layouts/post.njk
@@ -6,4 +6,10 @@ templateClass: tmpl-post
{{ content | safe }}
-
← Home
+
+
+ {%- set nextPost = collections.posts | getNextCollectionItem(page) %}
+ {%- if nextPost %}- Next: {{ nextPost.data.title }}
{% endif %}
+ {%- set previousPost = collections.posts | getPreviousCollectionItem(page) %}
+ {%- if previousPost %}- Previous: {{ previousPost.data.title }}
{% endif %}
+