diff --git a/_includes/blog/small_blog.liquid b/_includes/blog/small_blog.liquid
new file mode 100644
index 0000000..baeae0a
--- /dev/null
+++ b/_includes/blog/small_blog.liquid
@@ -0,0 +1,35 @@
+
+ {% unless site.posts %}
+
+ {% endunless %}
+ {% for post in site.posts limit:3 %}
+
+ {% if post.thumbnail %}
+
+
+
+
+
+ {% endif %}
+
+
+
+ {% include blog/post_info.liquid author=post.author date=post.date %}
+
+ {% if site.excerpt or site.theme_settings.excerpt %}
+
+ {% if site.excerpt == "truncate" %}
+ {{ post.content | strip_html | truncate: '250' | escape }}
+ {% else %}
+ {{ post.excerpt | strip_html | escape }}
+ {% endif %}
+
+ {% endif %}
+
+
+ {% endfor %}
+
diff --git a/_layouts/full_blog.html b/_layouts/full_blog.html
new file mode 100644
index 0000000..a4e9ebe
--- /dev/null
+++ b/_layouts/full_blog.html
@@ -0,0 +1,9 @@
+---
+layout: default
+---
+
+