diff --git a/templates/frontpage/blocks/blog.html b/templates/frontpage/blog.html
similarity index 100%
rename from templates/frontpage/blocks/blog.html
rename to templates/frontpage/blog.html
diff --git a/templates/frontpage/blocks/claim.html b/templates/frontpage/claim.html
similarity index 100%
rename from templates/frontpage/blocks/claim.html
rename to templates/frontpage/claim.html
diff --git a/templates/frontpage/blocks/projects.html b/templates/frontpage/projects.html
similarity index 100%
rename from templates/frontpage/blocks/projects.html
rename to templates/frontpage/projects.html
diff --git a/templates/index.html b/templates/index.html
index 07e3d36780178ad286e2ae2cde79c2a1241312b0..c36fafdfe71a8e6648d5d39bc829368d7ecde020 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -3,7 +3,7 @@
 {% block og_type %}website{% endblock %}
 
 {% block main %}
-  {% include "frontpage/blocks/claim.html" %}
-  {% include "frontpage/blocks/projects.html" %}
-  {% include "frontpage/blocks/blog.html" %}
+  {% include "frontpage/claim.html" %}
+  {% include "frontpage/projects.html" %}
+  {% include "frontpage/blog.html" %}
 {% endblock %}