diff --git a/source/_layouts/post.html.twig b/source/_layouts/post.html.twig
index 314cfb56..d1762642 100644
--- a/source/_layouts/post.html.twig
+++ b/source/_layouts/post.html.twig
@@ -1,50 +1,47 @@
-{% extends 'default.html.twig' %}
+{% extends 'default' %}
{% block content_wrapper %}
-
- {% include('post-header') %}
+ {% include('post-header') %}
- {% block content %}{% endblock %}
+ {% block content %}{% endblock %}
-
- Have feedback on this post? Email me or send me a tweet.
+
+ Have feedback on this post? Email me or send me a tweet.
+
+
+ {% if page.related -%}
+ Related Posts
+
+
+ {%- endif %}
+
+ {% if page.tags %}
+
+ Tags:
+ {% for tag in page.tags %}
+ {{ tag }}{% if not loop.last %}, {% endif %}
+ {% endfor %}
+ {% endif %}
- {% if page.related -%}
- Related Posts
+
+
About the Author
-
- {%- endif %}
+
![Picture of Oliver]({{ site.gravatar.url }}?s=100)
- {% if page.tags %}
-
- Tags:
- {% for tag in page.tags %}
- {{ tag }}{% if not loop.last %}, {% endif %}
- {% endfor %}
-
- {% endif %}
+
{{ site.author.bio|raw }}
+
-
-
About the Author
-
-
![Picture of Oliver]({{ site.gravatar.url }}?s=100)
-
-
{{ site.author.bio|raw }}
-
-
- {% if page.next_post or page.previous_post %}
-
- {% endif %}
-
-
+ {% if page.next_post or page.previous_post %}
+
+ {% endif %}
{% endblock %}