diff --git a/src/_includes/main/blogpost.njk b/src/_includes/main/blogpost.njk
new file mode 100644
index 00000000..f6acef4d
--- /dev/null
+++ b/src/_includes/main/blogpost.njk
@@ -0,0 +1,26 @@
+---
+layout: main/article
+---
+
+{{ content | safe }}
+
+{%- if collections.posts %}
+ {%- set previousPost = collections.posts | getPreviousCollectionItem %}
+ {%- set nextPost = collections.posts | getNextCollectionItem %}
+ {%- if nextPost or previousPost %}
+
+ {%- if previousPost %}- Previous Post: {{ previousPost.data.articleTitle }}
{% endif %}
+ {%- if nextPost %}- Next Post: {{ nextPost.data.articleTitle }}
{% endif %}
+
+ {%- endif %}
+{%- endif %}
+
+
\ No newline at end of file
diff --git a/src/blog/posts/posts.11tydata.json b/src/blog/posts/posts.11tydata.json
index af01b67e..66ecb2fb 100644
--- a/src/blog/posts/posts.11tydata.json
+++ b/src/blog/posts/posts.11tydata.json
@@ -1,5 +1,5 @@
{
- "layout": "main/article",
+ "layout": "main/blogpost",
"tags": ["posts", "contents", "feed items"],
"eleventyComputed": {
"title": "{{ articleTitle }} | Blog"