diff --git a/index.html b/index.html
index 08f6e4f..1e22716 100644
--- a/index.html
+++ b/index.html
@@ -1,28 +1,7 @@
 ---
 layout: nil
-is_index: true
 ---
 
-
 {% include header.html %}
-    {% for post in paginator.posts %}
-      {% include post.html %}
-    {% endfor %}
 	
-	<div class="pagination" id="bottom_page">
-		<ul>
-			{% if paginator.previous_page %}
-				{% if paginator.previous_page == 1 %}
-				<li class="previous"><a href="{{ linkhome }}">&larr; Previous</a></li>
-				{% else %}
-				<li class="previous"><a href="{{ site.baseurl }}/page{{ paginator.previous_page }}">&larr; Previous</a></li>
-				{% endif %}
-			{% endif %}
-				<li><p>Page {{ paginator.page }} of {{ paginator.total_pages }}</p></li>
-			{% if paginator.next_page %}
-				<li class="next"><a href="{{ site.baseurl }}/page{{ paginator.next_page }}">Next &rarr;</a></li>
-			{% endif %}
-		</ul>
-	</div>
-
 {% include footer.html %}