diff --git a/index.hbs b/index.hbs
index 1bf87ad..927ce5c 100644
--- a/index.hbs
+++ b/index.hbs
@@ -1,13 +1,15 @@
{{!< default}}
- {{#features}}
- -
- {{> featured}}
-
- {{/features}}
- {{#posts}}
- {{> post}}
- {{/posts}}
+ {{#foreach posts}}
+ {{#if @first}}
+ -
+ {{> full-post}}
+
+ {{else}}
+ {{> list-post}}
+ {{/if}}
+ {{/foreach}}
+
diff --git a/partials/featured.hbs b/partials/full-post.hbs
similarity index 100%
rename from partials/featured.hbs
rename to partials/full-post.hbs
diff --git a/partials/post.hbs b/partials/list-post.hbs
similarity index 100%
rename from partials/post.hbs
rename to partials/list-post.hbs
diff --git a/single.hbs b/single.hbs
index be5cd93..d2668cc 100644
--- a/single.hbs
+++ b/single.hbs
@@ -1,6 +1,6 @@
{{!< default}}
{{#post}}
- {{> featured}}
+ {{> full-post}}
{{/post}}
\ No newline at end of file