diff --git a/_layouts/page.html b/_layouts/page.html
index 77c1d1b..314efa2 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -15,10 +15,18 @@ layout: default
{{- site.data.locales[lang].tabs[tab_key] | default: page.title -}}
- {% include refactor-content.html content=content %}
+ {% if page.layout == 'page' %}
+ {% include refactor-content.html content=content %}
+ {% else %}
+ {{ content }}
+ {% endif %}
{% else %}
- {% include refactor-content.html content=content %}
+ {% if page.layout == 'post' %}
+ {% include refactor-content.html content=content %}
+ {% else %}
+ {{ content }}
+ {% endif %}
{% endif %}