diff --git a/_includes/post_detail.html b/_includes/post_detail.html
new file mode 100644
index 0000000..e09501f
--- /dev/null
+++ b/_includes/post_detail.html
@@ -0,0 +1,9 @@
+
+{% if page.title %}
+ {{ page.title }}
+{% endif %}
+{% if post.title %}
+ {{ post.title }}
+{% endif %}
+
+{{ content }}
\ No newline at end of file
diff --git a/index.html b/index.html
index bc656bc..9d199ef 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,12 @@ layout: default
title: {{ site.name }}
---
+
+ {% assign post = site.posts.first %}
+ {% assign content = post.content %}
+ {% include post_detail.html %}
+
+