diff --git a/_layouts/default.html b/_layouts/default.html
index 4b5d73a..58e141b 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,4 +1,3 @@
- (13 sloc) 337 Bytes
diff --git a/_layouts/home.html b/_layouts/home.html
new file mode 100644
index 0000000..622b5e1
--- /dev/null
+++ b/_layouts/home.html
@@ -0,0 +1,61 @@
+---
+layout: default
+---
+
+
+ {%- if page.title -%}
+
{{ page.title }}
+ {%- endif -%}
+
+ {{ content }}
+
+
+ {% if site.paginate %}
+ {% assign posts = paginator.posts %}
+ {% else %}
+ {% assign posts = site.posts %}
+ {% endif %}
+
+
+ {%- if posts.size > 0 -%}
+ {%- if page.list_title -%}
+
{{ page.list_title }}
+ {%- endif -%}
+
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
+ {%- for post in posts -%}
+ -
+ {{ post.date | date: date_format }}
+
+ {%- if site.show_excerpts -%}
+ {{ post.excerpt }}
+ {%- endif -%}
+
+ {%- endfor -%}
+
+
+ {% if site.paginate %}
+
+ {%- endif %}
+
+ {%- endif -%}
+
+
diff --git a/_layouts/page.html b/_layouts/page.html
new file mode 100644
index 0000000..01e4b2a
--- /dev/null
+++ b/_layouts/page.html
@@ -0,0 +1,14 @@
+---
+layout: default
+---
+
+
+
+
+
+ {{ content }}
+
+
+
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..c9a03be
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,38 @@
+---
+layout: default
+---
+
+
+
+
+
+ {{ content }}
+
+
+ {%- if site.disqus.shortname -%}
+ {%- include disqus_comments.html -%}
+ {%- endif -%}
+
+
+