diff --git a/templates/blog.html b/templates/blog.html
index 648673c..ff01e15 100755
--- a/templates/blog.html
+++ b/templates/blog.html
@@ -1,18 +1,20 @@
{% extends "page.html" %}
{% block content %}
-{{ page.content | safe }}
-{% set posts = get_section(path="blogposts/_index.md") %}
-
-{% for post in posts.pages %}
-
-{{ post.date }}
-
-{% if post.summary %}
-{{ post.summary | safe }}
-{% else %}
-{{ post.content | safe }}
-{% endif %}
-
-{% endfor %}
+ {{ page.content | safe }}
+ {% set posts = get_section(path="blogposts/_index.md") %}
+
+ {% for post in posts.pages %}
+
+ {{ post.date }}
+
+ {% if post.summary %}
+ {{ post.summary | safe }}
+ {% else %}
+ {{ post.content | safe }}
+ {% endif %}
+
+
+ {% endfor %}
{% endblock content %}